/* ============================================
   Gift Certificates Landing Page Styles
   Austin Spanish Academy
   FIXED VERSION - v1.0.1
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* Base Reset for Landing Page */
.gc-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gc-landing {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: #1F2937;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.gc-landing section {
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.gc-landing h1, 
.gc-landing h2, 
.gc-landing h3, 
.gc-landing h4 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

/* Hero Section */
.gc-hero {
    background: linear-gradient(135deg, #1A365D 0%, #2d4a6f 50%, #3d5a7f 100%) !important;
    min-height: 85vh;
    display: flex !important;
    align-items: center !important;
    position: relative;
    overflow: hidden;
    padding: 80px 20px !important;
    width: 100% !important;
}

.gc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 160, 176, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gc-hero-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
    position: relative;
    z-index: 1;
    width: 100% !important;
}

.gc-hero-content {
    color: #ffffff !important;
}

.gc-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(0, 160, 176, 0.2) !important;
    border: 1px solid rgba(0, 160, 176, 0.4) !important;
    color: #5EEAD4 !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
    animation: gc-pulse 2s ease-in-out infinite;
}

@keyframes gc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 160, 176, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(0, 160, 176, 0.2); }
}

.gc-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    margin-bottom: 8px !important;
    color: #ffffff !important;
}

.gc-hero-title .accent {
    color: #00A0B0 !important;
}

.gc-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-style: italic !important;
    margin-bottom: 24px !important;
}

.gc-hero-description {
    font-size: 1.125rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 32px !important;
    max-width: 540px !important;
    line-height: 1.7 !important;
}

.gc-hero-buttons {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

.gc-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #00A0B0 !important;
    color: #ffffff !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 160, 176, 0.3) !important;
}

.gc-btn-primary:hover {
    background: #008B9A !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 160, 176, 0.4) !important;
    color: #ffffff !important;
}

.gc-btn-primary svg {
    width: 20px !important;
    height: 20px !important;
    transform: rotate(180deg) !important;
}

/* Hero Visual - Floating Card */
.gc-hero-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.gc-card-display {
    position: relative;
    perspective: 1000px;
}

.gc-floating-card {
    width: 340px !important;
    height: 420px !important;
    animation: gc-float 6s ease-in-out infinite;
}

@keyframes gc-float {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.gc-card-inner {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9fa 100%) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.4),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    border: 3px solid #00A0B0 !important;
    position: relative;
    overflow: hidden;
}

.gc-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #00A0B0, #00B4D8, #1A365D);
}

.gc-card-header {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    color: #00A0B0 !important;
    margin-bottom: 16px !important;
}

.gc-card-amount {
    font-family: 'Playfair Display', serif !important;
    font-size: 4rem !important;
    font-weight: 700 !important;
    color: #1A365D !important;
    margin-bottom: 16px !important;
}

.gc-card-brand {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1A365D !important;
    margin-bottom: 8px !important;
}

.gc-card-tagline {
    font-size: 1rem !important;
    color: #6B7280 !important;
    font-style: italic !important;
    margin-bottom: 24px !important;
}

.gc-card-badge {
    background: #00A0B0 !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

/* Section Header (shared) */
.gc-section-header {
    text-align: center !important;
    margin-bottom: 48px !important;
}

.gc-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
    color: #1A365D !important;
    margin-bottom: 16px !important;
}

.gc-section-header p {
    font-size: 1.125rem !important;
    color: #6B7280 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Benefits Section */
.gc-benefits {
    padding: 100px 20px !important;
    background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%) !important;
    width: 100% !important;
}

.gc-benefits-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.gc-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
}

@media (max-width: 1024px) {
    .gc-benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .gc-benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

.gc-benefit-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 32px !important;
    text-align: center !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
}

.gc-benefit-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: #00A0B0 !important;
}

.gc-benefit-icon {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, #E6F7F8 0%, rgba(0, 160, 176, 0.1) 100%) !important;
    font-size: 2rem !important;
}

.gc-benefit-card h3 {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1A365D !important;
    margin-bottom: 12px !important;
}

.gc-benefit-card p {
    color: #6B7280 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

/* ============================================
   PRODUCTS SECTION - FIXED GRID
   ============================================ */
.gc-products {
    padding: 100px 20px !important;
    background: linear-gradient(180deg, #1A365D 0%, #2d4a6f 100%) !important;
    position: relative;
    width: 100% !important;
}

.gc-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 160, 176, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.gc-products-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 1;
}

.gc-products .gc-section-header h2 {
    color: #ffffff !important;
}

.gc-products .gc-section-header p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ============================================
   PRODUCTS CAROUSEL - RESPONSIVE LAYOUT
   ============================================ */
.gc-products-carousel {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 20px !important;
    margin: 0 auto 20px !important;
    max-width: 1200px !important;
    padding: 20px 10px !important;
}

/* Hide any WordPress-injected elements inside carousel */
.gc-products-carousel > p,
.gc-products-carousel > br,
.gc-products-carousel > script {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gc-product-cell {
    flex: 0 0 auto !important;
    width: 200px !important;
}

.gc-product-cell-featured {
    width: 220px !important;
}

/* Hide $60 and $500 cards on desktop - only show center 5 products */
/* These cards are still available via mobile carousel swipe */
.gc-product-cell-mobile-only {
    display: none !important;
}

/* Swipe hint - hidden on desktop */
.gc-carousel-hint {
    display: none !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem !important;
    margin-bottom: 16px !important;
    animation: gc-hint-pulse 2s ease-in-out infinite !important;
}

@keyframes gc-hint-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Product Card - New Design */
.gc-product-card-new {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 30px 20px !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

/* Hide WordPress-injected br tags inside product cards */
.gc-product-card-new br {
    display: none !important;
}

.gc-product-card-new:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

/* Featured Card - Teal Gradient */
.gc-product-featured {
    background: linear-gradient(145deg, #00A0B0 0%, #008B9A 100%) !important;
    border: 3px solid #5EEAD4 !important;
    transform: scale(1.05) !important;
    box-shadow: 0 20px 60px rgba(0, 160, 176, 0.4) !important;
}

.gc-product-featured:hover {
    transform: scale(1.05) translateY(-8px) !important;
    box-shadow: 0 25px 70px rgba(0, 160, 176, 0.5) !important;
}

/* Popular Badge */
.gc-product-popular-badge {
    position: absolute !important;
    top: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #FFD700 !important;
    color: #1A365D !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
    white-space: nowrap !important;
}

/* Amount - Large Price Display */
.gc-product-amount-new {
    display: block !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #1A365D !important;
    margin-bottom: 10px !important;
    margin-top: 15px !important;
    line-height: 1 !important;
}

.gc-product-featured .gc-product-amount-new {
    color: #ffffff !important;
    font-size: 3.5rem !important;
    margin-top: 20px !important;
}

/* Product Name */
.gc-product-name-new {
    display: block !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1A365D !important;
    margin-bottom: 5px !important;
}

.gc-product-featured .gc-product-name-new {
    color: #ffffff !important;
    font-size: 1.2rem !important;
}

/* Product Description */
.gc-product-desc-new {
    display: block !important;
    font-size: 0.9rem !important;
    color: #6B7280 !important;
    margin-bottom: 20px !important;
}

.gc-product-featured .gc-product-desc-new {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Select Button */
.gc-product-btn-new {
    display: inline-block !important;
    background: #00A0B0 !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.gc-product-card-new:hover .gc-product-btn-new {
    background: #008B9A !important;
    transform: scale(1.05) !important;
}

/* Featured Button - White */
.gc-product-btn-featured {
    background: #ffffff !important;
    color: #00A0B0 !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    padding: 14px 28px !important;
}

.gc-product-featured:hover .gc-product-btn-featured {
    background: #ffffff !important;
    color: #008B9A !important;
}

/* Mobile Responsive - Horizontal Scroll Carousel */
@media (max-width: 1024px) {
    .gc-products-carousel {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 20px 0 !important;
        margin: 0 0 20px 0 !important;
        width: 100% !important;
        max-width: none !important;
        /* Remove gap - use margins instead to avoid hidden element issues */
        gap: 0 !important;
    }

    .gc-products-carousel::-webkit-scrollbar {
        display: none !important;
    }

    .gc-product-cell {
        flex: 0 0 auto !important;
        width: 260px !important;
        scroll-snap-align: center !important;
        /* Use margin-left instead of gap for consistent spacing */
        margin-left: 20px !important;
    }

    .gc-product-cell-featured {
        width: 280px !important;
    }

    /* Show $60 and $500 cards on mobile carousel */
    .gc-product-cell-mobile-only {
        display: block !important;
    }

    .gc-carousel-hint {
        display: block !important;
    }

    .gc-product-featured {
        transform: scale(1) !important;
    }

    .gc-product-featured:hover {
        transform: translateY(-8px) !important;
    }
}

/* Smaller mobile - narrower cards */
@media (max-width: 640px) {
    .gc-product-cell {
        width: 240px !important;
    }

    .gc-product-cell-featured {
        width: 260px !important;
    }
}

.gc-products-note {
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
}

.gc-products-note strong {
    color: #ffffff !important;
}

.gc-products-note a {
    color: #5EEAD4 !important;
    text-decoration: underline !important;
}

/* How It Works Section */
.gc-how-it-works {
    padding: 100px 20px !important;
    background: #ffffff !important;
    width: 100% !important;
}

.gc-how-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.gc-steps {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

.gc-step {
    flex: 1 !important;
    min-width: 200px !important;
    max-width: 240px !important;
    text-align: center !important;
    padding: 24px !important;
}

.gc-step-number {
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, #00A0B0 0%, #00B4D8 100%) !important;
    color: white !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 16px !important;
}

.gc-step h3 {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1A365D !important;
    margin-bottom: 8px !important;
}

.gc-step p {
    font-size: 0.9rem !important;
    color: #6B7280 !important;
}

.gc-step-arrow {
    color: #00A0B0 !important;
    font-size: 2rem !important;
    font-weight: 300 !important;
    padding-top: 40px !important;
}

@media (max-width: 900px) {
    .gc-step-arrow {
        display: none !important;
    }
    
    .gc-steps {
        gap: 24px !important;
    }
}

/* ============================================
   BONUS SECTION - FIXED HIGHLIGHT
   ============================================ */
.gc-bonus {
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #00A0B0 0%, #008B9A 100%) !important;
    width: 100% !important;
    position: relative;
    overflow: hidden;
}

.gc-bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: gc-pulse-bg 10s ease-in-out infinite;
}

@keyframes gc-pulse-bg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gc-bonus-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 1;
}

.gc-bonus-content {
    text-align: center !important;
    color: #ffffff !important;
}

.gc-bonus-icon {
    margin-bottom: 16px !important;
    text-align: center !important;
}

.gc-bonus-icon img {
    width: 120px !important;
    height: auto !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

.gc-bonus h2 {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
}

.gc-bonus p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 24px !important;
}

/* HIGHLIGHT for "$100 or more" */
.gc-highlight {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    display: inline !important;
}

.gc-bonus strong {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.gc-bonus-features {
    display: flex !important;
    justify-content: center !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
    margin-bottom: 24px !important;
}

.gc-bonus-features span {
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
}

.gc-bonus-link {
    color: #ffffff !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

/* Programs Section */
.gc-programs {
    padding: 100px 20px !important;
    background: #F5F5F5 !important;
    width: 100% !important;
}

.gc-programs-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.gc-programs-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
}

@media (max-width: 1024px) {
    .gc-programs-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .gc-programs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.gc-program-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 24px 16px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.gc-program-card:hover {
    border-color: #00A0B0 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Circular Image Container */
.gc-program-img {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 16px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #00A0B0 !important;
    box-shadow: 0 4px 15px rgba(0, 160, 176, 0.2) !important;
}

.gc-program-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.gc-program-card .emoji {
    font-size: 2.5rem !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.gc-program-card h4 {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #1A365D !important;
    margin-bottom: 4px !important;
}

.gc-program-card p {
    font-size: 0.75rem !important;
    color: #6B7280 !important;
}

/* FAQ Section */
.gc-faq {
    padding: 100px 20px !important;
    background: #ffffff !important;
    width: 100% !important;
}

.gc-faq-container {
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.gc-faq-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
}

@media (max-width: 768px) {
    .gc-faq-grid {
        grid-template-columns: 1fr !important;
    }
}

.gc-faq-item {
    background: #F9FAFB !important;
    border-radius: 16px !important;
    padding: 24px !important;
    border-left: 4px solid #00A0B0 !important;
}

.gc-faq-item h4 {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1A365D !important;
    margin-bottom: 8px !important;
}

.gc-faq-item p {
    font-size: 0.9rem !important;
    color: #6B7280 !important;
    line-height: 1.6 !important;
}

/* CTA Section */
.gc-cta {
    padding: 100px 20px !important;
    background: linear-gradient(135deg, #1A365D 0%, #2d4a6f 100%) !important;
    text-align: center !important;
    position: relative;
    overflow: hidden;
    width: 100% !important;
}

.gc-cta-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 1;
}

.gc-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
}

.gc-cta p {
    font-size: 1.125rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 32px !important;
}

.gc-cta-buttons {
    display: flex !important;
    gap: 16px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.gc-btn-white {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #ffffff !important;
    color: #1A365D !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.gc-btn-white:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    color: #1A365D !important;
}

.gc-btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
    color: #ffffff !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.gc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* Footer */
.gc-footer {
    background: #0f1f2e !important;
    padding: 40px 20px !important;
    text-align: center !important;
    width: 100% !important;
}

.gc-footer-content {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.gc-footer-logo {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
}

.gc-footer p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    margin-bottom: 12px !important;
}

.gc-footer-contact a {
    color: #00A0B0 !important;
    text-decoration: none !important;
}

.gc-footer-contact a:hover {
    text-decoration: underline !important;
}

.gc-footer-links {
    display: flex !important;
    justify-content: center !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
    margin-top: 16px !important;
}

.gc-footer-links a {
    color: #00A0B0 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.gc-footer-links a:hover {
    color: #00B4D8 !important;
}

/* ============================================
   APPLE PAY & GOOGLE PAY BUTTON CONSISTENCY
   ============================================ */

/*
 * NOTE: These styles attempt to make Apple Pay and Google Pay buttons
 * the same width. However, these buttons are rendered inside iframes
 * controlled by Apple/Google's payment SDKs, which limits CSS control.
 *
 * The styles below affect the wrapper elements but may not fully
 * override the internal button rendering. This is a known limitation
 * of the Square digital wallet integration.
 *
 * Kept in place as a best-effort attempt - harmless if ineffective.
 */

/* Force both digital wallet buttons to have consistent width */
.wc-square-digital-wallet,
#wc-square-digital-wallet {
    width: 100% !important;
    max-width: 100% !important;
}

.wc-square-apple-pay,
.wc-square-google-pay,
#wc-square-apple-pay,
#wc-square-google-pay {
    width: 100% !important;
    max-width: 100% !important;
}

/* Target button wrappers */
.wc-square-wallet-buttons,
.wc-square-digital-wallet-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.wc-square-wallet-buttons > div,
.wc-square-digital-wallet-buttons > div {
    width: 100% !important;
}

/* Google Pay button container */
.gpay-button-container {
    width: 100% !important;
}

.gpay-button {
    width: 100% !important;
    min-width: 100% !important;
}

/* Apple Pay button */
apple-pay-button {
    width: 100% !important;
    --apple-pay-button-width: 100% !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .gc-hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 48px !important;
    }
    
    .gc-hero-content {
        order: 1 !important;
    }
    
    .gc-hero-visual {
        order: 2 !important;
    }
    
    .gc-hero-description {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .gc-hero-buttons {
        justify-content: center !important;
    }
    
    .gc-floating-card {
        width: 280px !important;
        height: 350px !important;
    }
    
    .gc-card-amount {
        font-size: 3rem !important;
    }
}

@media (max-width: 640px) {
    .gc-hero {
        padding: 60px 20px !important;
        min-height: auto !important;
    }
    
    .gc-floating-card {
        width: 240px !important;
        height: 300px !important;
    }
    
    .gc-card-inner {
        padding: 24px !important;
    }
    
    .gc-card-amount {
        font-size: 2.5rem !important;
    }
    
    .gc-card-brand {
        font-size: 1.25rem !important;
    }
    
    .gc-cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .gc-btn-white,
    .gc-btn-outline {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
    }
}
