/* ========================================
   Antique & Collectors Centre - Premium Gold Theme
   ======================================== */

/* CSS Variables */
:root {
    --gold-primary: #D4A84B;
    --gold-light: #E8C97A;
    --gold-dark: #B8922F;
    --gold-gradient: linear-gradient(135deg, #D4A84B 0%, #E8C97A 50%, #D4A84B 100%);

    /* Matched to logo royal blue - rgb(0, 4, 109) */
    --navy-primary: #00046D;
    --navy-light: #0A1080;
    --navy-dark: #000340;

    --white: #FFFFFF;
    --off-white: #F8F6F3;
    --light-gray: #E5E5E5;
    --text-dark: #1A1A1A;
    --text-gray: #666666;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(212, 168, 75, 0.3);

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gold Text Accent */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Navigation - Unique Two-Tier Design
   ======================================== */

/* Top Bar - Gold accent strip with contact info */
.top-bar {
    background: var(--gold-gradient);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--navy-dark);
    font-weight: 600;
}

.top-bar-left .established {
    font-family: var(--font-heading);
    font-style: italic;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--navy-dark);
    font-weight: 600;
}

.top-bar-right a:hover {
    color: var(--navy-light);
}

.top-bar-right svg {
    width: 14px;
    height: 14px;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(10, 21, 81, 0.3);
}

/* Main Navigation - Royal Blue with Centred Logo */
.navbar {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy-primary);
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Area - Centred */
.logo {
    padding: 18px 30px 14px;
    text-align: center;
    position: relative;
}

/* Decorative gold lines either side of logo */
.logo::before,
.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.logo::before {
    right: calc(50% + 220px);
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.logo::after {
    left: calc(50% + 220px);
    background: linear-gradient(270deg, transparent, var(--gold-primary));
}

.logo img {
    height: 55px;
    width: auto;
    display: inline-block;
}

/* Navigation Links Row */
.nav-links-wrapper {
    width: 100%;
    background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-links li {
    position: relative;
}

/* Gold diamond separators */
.nav-links li:not(:last-child)::after {
    content: '\u25C6';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 5px;
    opacity: 0.5;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 25px;
    display: block;
    position: relative;
    transition: var(--transition);
}

/* Elegant underline effect */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 50%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

/* Hide the old CTA button in nav */
.nav-cta {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 75, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

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

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-primary);
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(212, 168, 75, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 75, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/Collectors-centre-18-of-18.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 200px 20px 80px;
    max-width: 900px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.3);
    color: var(--gold-light);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.gold-icon {
    color: var(--gold-primary);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(10px); }
    60% { transform: rotate(45deg) translateY(5px); }
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    background: rgba(212, 168, 75, 0.15);
    color: var(--gold-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header.light .section-tag {
    background: rgba(212, 168, 75, 0.2);
    color: var(--gold-light);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 168, 75, 0.3);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--navy-primary);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Why Choose Us
   ======================================== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-tag {
    background: rgba(212, 168, 75, 0.15);
}

.why-us-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.why-us-content .lead {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.benefits-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--navy-primary);
}

.benefits-list p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    padding: 100px 0;
    background: var(--navy-primary);
    background-image:
        radial-gradient(ellipse at 30% 0%, rgba(212, 168, 75, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(212, 168, 75, 0.08) 0%, transparent 50%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(212, 168, 75, 0.3);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.process-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--off-white);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.google-rating .stars {
    color: var(--gold-primary);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.google-rating span {
    color: var(--text-gray);
    font-weight: 500;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy-primary);
    font-size: 0.9rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gold-gradient);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--navy-primary);
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--navy-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-section .btn-primary:hover {
    background: var(--navy-dark);
}

.cta-section .btn-outline {
    border-color: var(--navy-primary);
    color: var(--navy-primary);
}

.cta-section .btn-outline:hover {
    background: var(--navy-primary);
    color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gold-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact address {
    font-style: normal;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-phone a,
.footer-email a {
    color: var(--gold-light);
    font-weight: 500;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: var(--white);
}

.footer-hours {
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-hours h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    max-width: 400px;
    margin: 0 auto;
    color: rgba(255,255,255,0.7);
}

.hours-grid span:nth-child(odd) {
    text-align: right;
}

.hours-grid span:nth-child(even) {
    text-align: left;
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ========================================
   Page Headers (for inner pages)
   ======================================== */
.page-header {
    padding: 200px 0 80px;
    background: var(--navy-primary);
    text-align: center;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(212, 168, 75, 0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   Content Sections (for inner pages)
   ======================================== */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: var(--off-white);
}

/* ========================================
   Contact Form Styles
   ======================================== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--navy-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 168, 75, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
    }

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

@media (max-width: 900px) {
    /* Hide decorative lines on logo */
    .logo::before,
    .logo::after {
        display: none;
    }

    .nav-links a {
        padding: 15px 18px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .nav-container {
        position: relative;
    }

    /* Hide nav links wrapper, show mobile menu */
    .nav-links-wrapper {
        display: none;
    }

    .nav-links-wrapper.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        border-top: 2px solid var(--gold-primary);
    }

    .nav-links.active,
    .nav-links-wrapper.active .nav-links {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-links li::after {
        display: none;
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        padding-top: 140px;
    }

    .page-header {
        padding-top: 130px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
