/* style.css - Main content styles (nav and footer removed) */
:root {
    --primary-red: #970404;
    --dark-red: #6B0303;
    --light-red: #B91C1C;
    --white: #FFFFFF;
    --navy-blue: #0A2540;
    --off-white: #F9FAFB;
    --light-gray: #F2F4F7;
    --gray: #6B7280;
    --dark-gray: #1F2937;
    --black: #111827;
    --gold: #C9A227;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    margin-top: 0px; /* Keep margin for fixed header */
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--primary-red) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content h1 span {
    color: var(--white);
    text-shadow: 2px 2px 0 var(--gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.floating-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--off-white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Modern Hover Effect for "Comprehensive Digital Solutions" */
.section-header h2 {
    background: linear-gradient(90deg, var(--navy-blue), var(--primary-red), var(--navy-blue));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.section-header h2:hover {
    background-position: -100% 0;
    transform: translateY(-3px);
    text-shadow: 0 10px 20px rgba(151, 4, 4, 0.1);
}

.section-header h2:hover::before {
    width: 100%;
}

/* Subtle animation on hover */
.section-header h2 span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.section-header h2:hover span {
    transform: translateY(-2px);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.section-header:hover p {
    color: var(--primary-red);
    transform: translateY(2px);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Enhanced Service Card Hover Effects */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
    text-align: left;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(151, 4, 4, 0.05), rgba(201, 162, 39, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(185, 28, 28, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold), var(--primary-red));
    box-shadow: 0 10px 20px rgba(151, 4, 4, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-red);
    transform: translateX(5px);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--dark-gray);
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-card:hover .service-features li::before {
    color: var(--gold);
    transform: scale(1.2);
}

/* Premium Domains Section */
.premium-domains {
    padding: 6rem 2rem;
    background: var(--white);
}

/* Enhanced Domain Box Hover Effects */
.domains-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.domain-box {
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.domain-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(151, 4, 4, 0.1), rgba(201, 162, 39, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.domain-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(185, 28, 28, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.domain-box:hover::before {
    opacity: 1;
}

.domain-box-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.domain-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.domain-box:hover .domain-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

.domain-box:nth-child(1) .domain-icon-wrapper {
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
}

.domain-box:nth-child(2) .domain-icon-wrapper {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
}

.domain-box:nth-child(3) .domain-icon-wrapper {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}

.domain-icon {
    font-size: 3rem;
    transition: all 0.4s ease;
}

.domain-box:hover .domain-icon {
    transform: scale(1.2);
}

.domain-box-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.domain-box:hover .domain-box-header h3 {
    color: var(--primary-red);
}

.domain-list-container {
    background: var(--white);
    padding: 1.5rem 2rem 1.5rem 2rem;
    height: 350px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.domain-list-wrapper {
    height: calc(350px - 3rem - 3rem);
    overflow: hidden;
    position: relative;
}

.domain-list-header {
    display: flex;
    justify-content: space-between;
    padding: 0 0 1rem 0;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 0;
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 0.9rem;
    background: var(--white);
    z-index: 10;
}

.domain-box-footer {
    padding: 1.5rem 2rem;
    text-align: center;
    background: var(--light-gray);
    position: relative;
    z-index: 1;
}

.see-all-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.see-all-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.see-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

.see-all-btn:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(151, 4, 4, 0.3);
}

/* Domain scrolling styles - Seamless infinite loop */
.domain-list-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.domain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-item {
    cursor: pointer;
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    transition: background 0.3s ease;
    position: relative;
}

.domain-item:hover {
    background: linear-gradient(90deg, rgba(151, 4, 4, 0.05), transparent);
}

.domain-name {
    font-weight: 600;
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    flex: 1;
}

.domain-item:hover .domain-name {
    color: var(--primary-red);
}

.domain-price {
    color: var(--primary-red);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 1rem;
}

.domain-item:hover .domain-price {
    color: var(--gold);
    transform: scale(1.05);
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.domain-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: 4px;
}

.domain-item.loading .domain-name,
.domain-item.loading .domain-price {
    color: transparent;
    background: #e0e0e0;
    border-radius: 2px;
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 2rem;
    background: var(--navy-blue);
    color: var(--white);
}

/* Enhanced Why Grid Hover Effects */
.why-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(201, 162, 39, 0.2);
}

.why-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    text-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

.why-item:hover .why-number {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 10px 25px rgba(201, 162, 39, 0.5);
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.why-item:hover h3 {
    color: var(--gold);
    transform: translateY(-3px);
}

.why-item p {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.why-item:hover p {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--off-white);
}

/* Enhanced Pricing Card Hover Effects */
.pricing-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(151, 4, 4, 0.05), rgba(201, 162, 39, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(151, 4, 4, 0.2);
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(201, 162, 39, 0.1));
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(185, 28, 28, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 
        0 40px 80px rgba(151, 4, 4, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.pricing-card:hover .pricing-tag::before {
    left: 100%;
}

.pricing-card.featured .pricing-tag {
    background: linear-gradient(135deg, var(--gold), var(--white));
    color: var(--primary-red);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card:hover h3 {
    transform: translateY(-3px);
    color: var(--primary-red);
}

.pricing-card.featured:hover h3 {
    color: var(--gold);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-price {
    transform: scale(1.1);
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-card.featured .pricing-price span {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li::before {
    color: var(--gold);
    transform: scale(1.2);
}

.pricing-card.featured .pricing-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .pricing-features li::before {
    color: var(--gold);
}

/* PRICING SECTION BUTTON FIXES */
.pricing-button-wrapper {
    position: relative;
    z-index: 100;
    margin-top: 2rem;
    width: 100%;
}

.pricing-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 1rem 2rem !important;
    position: relative !important;
    z-index: 101 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.pricing-btn-white {
    background: white !important;
    color: var(--primary-red) !important;
}

.pricing-btn-white:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.pricing-btn:not(.pricing-btn-white):hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(185, 28, 28, 0.3) !important;
}

.pricing-card {
    position: relative;
    overflow: visible !important;
}

.pricing-features {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.pricing-card::before,
.pricing-card::after {
    pointer-events: none !important;
}

.pricing-card.featured .pricing-btn {
    position: relative !important;
    z-index: 102 !important;
}

/* Testimonials */
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testimonials {
    padding: 6rem 2rem;
    background: var(--white);
}

/* Enhanced Testimonial Card Hover Effects */
.testimonials-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(151, 4, 4, 0.05), rgba(201, 162, 39, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(185, 28, 28, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-red);
}

.quote {
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    transition: all 0.4s ease;
}

.testimonial-card:hover .quote {
    opacity: 0.5;
    transform: scale(1.1) rotate(5deg);
    color: var(--gold);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    transform: translateX(5px);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--gold), var(--primary-red));
}

.author-info h4 {
    font-weight: 700;
    color: var(--navy-blue);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: var(--primary-red);
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info p {
    color: var(--dark-gray);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--navy-blue), var(--primary-red));
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center; /* centers horizontally */
    gap: 1rem; /* space between buttons */
    flex-wrap: wrap; /* ensures responsiveness on small screens */
}


@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-section:hover h2 {
    transform: translateY(-5px);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-section:hover p {
    transform: translateY(-3px);
    opacity: 1;
}

/* Responsive Design - Content Only */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-grid,
    .domains-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    /* Mobile centering for service icons */
    .service-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-icon {
        margin-left: auto;
        margin-right: auto;
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-features {
        text-align: left;
        padding-left: 0;
        width: 100%;
    }
    
    .service-features li {
        text-align: left;
        padding-left: 1.5rem;
        position: relative;
    }
    
    /* Ensure hover effects still work on mobile */
    .service-card:hover .service-icon {
        transform: scale(1.05);
    }
    
    /* Center domain boxes on mobile */
    .domain-box {
        text-align: center;
    }
    
    .domain-icon-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center pricing cards on mobile */
    .pricing-card {
        text-align: center;
    }
    
    .pricing-features {
        text-align: center;
        padding-left: 0;
    }
    
    .pricing-features li {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
    }
    
    .pricing-features li::before {
        position: static;
        margin-right: 0.5rem;
        display: inline-block;
    }
    
    /* Center testimonials on mobile */
    .testimonial-card {
        text-align: center;
    }
    
    .testimonial-author {
        justify-content: center;
    }
    
    /* Ensure all content is properly centered */
    .section-header,
    .why-item,
    .domain-box-header,
    .pricing-card,
    .testimonial-content {
        text-align: center;
    }
}

/* For very small screens */
@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-number {
        font-size: 3rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .domain-list-container {
        height: 300px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

/* Additional fix for service features alignment */
.service-features li::before {
    position: absolute;
    left: 0;
}

@media (max-width: 968px) {
    .service-features {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-features li {
        text-align: left;
        padding-left: 1.8rem;
        padding-right: 0;
    }
    
    .service-features li::before {
        left: 0;
        display: block;
    }
}

/* Mobile responsiveness for pricing buttons */
@media (max-width: 768px) {
    .pricing-btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .pricing-button-wrapper {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Enhanced mobile alignment for all sections */
    .section-header {
        text-align: center;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        text-align: center;
        display: block;
    }
    
    .section-header h2::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Center why us items */
    .why-item {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .why-number {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center CTA buttons */
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: auto;
        min-width: 200px;
        margin: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
    
    .service-features {
        max-width: 100%;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
}

/* Fix for inline styles override */
.pricing-grid a[style*="width: 100%"] {
    display: block !important;
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
}

/* Active and focus states for accessibility */
.pricing-btn:active {
    transform: translateY(0) !important;
}

.pricing-btn:focus {
    outline: 2px solid var(--primary-red) !important;
    outline-offset: 2px !important;
}

.pricing-btn-white:focus {
    outline-color: white !important;
}

/* Loading animations */
.service-card,
.domain-box,
.pricing-card,
.testimonial-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.domain-box:nth-child(1) {
    animation-delay: 0.1s;
}

.domain-box:nth-child(2) {
    animation-delay: 0.2s;
}

.domain-box:nth-child(3) {
    animation-delay: 0.3s;
}

/* Floating animation for visual interest */
@keyframes floatSubtle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-element {
    animation: floatSubtle 6s ease-in-out infinite;
}

/* Pulse animation for interactive elements */
@keyframes pulseSoft {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(151, 4, 4, 0.1);
    }
    50% {
        box-shadow: 0 5px 25px rgba(151, 4, 4, 0.3);
    }
}

.pulse-on-hover:hover {
    animation: pulseSoft 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .domain-list-wrapper {
        height: 250px;
    }
    
    .domain-item {
        padding: 0.75rem;
    }
}