/* KGMB Roofing Ltd - Professional Stylesheet */
/* Color Scheme: Navy Blue (#2C3E50), Gold (#D4AF37), White (#FFFFFF), Light Gray (#F8F9FA) */

:root {
    --primary-navy: #2C3E50;
    --primary-navy-dark: #1a252f;
    --accent-gold: #D4AF37;
    --accent-gold-light: #F4C430;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    padding-bottom: 80px; /* space for bottom nav */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--primary-navy);
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-contact-item:hover {
    color: var(--accent-gold);
}

.header-contact-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.service-type-toggle {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 3px;
}

.toggle-btn {
    padding: 6px 16px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 22px;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    color: var(--white);
}

.toggle-btn.active {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

@media (max-width: 992px) {
    .header-right {
        gap: 15px;
    }
    
    .header-contact-item span {
        display: none;
    }
    
    .header-contact-item svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        gap: 10px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .header-contact {
        gap: 12px;
    }
    
    .service-type-toggle {
        padding: 2px;
    }
    .toggle-btn {
        padding: 4px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 0;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .header-contact {
        gap: 10px;
    }
    
    .header-contact-item svg {
        width: 18px;
        height: 18px;
    }
    
    .toggle-btn {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.company-name {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.logo {
    height: 60px;
    width: auto;
}

/* Navigation - removed from header, now at bottom */

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--accent-gold);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 100px;
}

.bottom-nav a:hover,
.bottom-nav a:active {
    color: var(--accent-gold);
}

.bottom-nav svg {
    width: 24px;
    height: 24px;
}

/* Position 3CX chat widget above bottom navigation */
#wp-live-chat-by-3CX {
    bottom: 90px !important; /* lift above nav height */
    right: 20px !important;  /* keep original horizontal offset */
    z-index: 10000 !important; /* ensure it stays above nav */
}

.mybuilder-nav-btn {
    justify-content: center;
}

.mybuilder-nav-logo {
    height: 32px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .bottom-nav a {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    .mybuilder-nav-logo {
        height: 28px;
        max-width: 70px;
    }
    .bottom-nav svg {
        width: 22px;
        height: 22px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: visible; /* allow tagline/logo shadows to show and avoid clipping */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* ensure content is centered and not shifted */
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-logo {
    /* Responsive sizing: scales with viewport but caps at 350px */
    width: clamp(200px, 42vw, 350px);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px; /* centers the image horizontally */
    position: relative;
    z-index: 2; /* keep above background patterns */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Trust Badges in Footer */
.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin: 30px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    font-style: italic;
}

.badge-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.badge-link {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.2s ease;
    opacity: 0.8;
}

.badge-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.badge-logo {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Bark widget styling */
.bark-widget {
    display: inline-block !important;
}

/* Responsive adjustments for the hero logo */
@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-logo {
        width: 260px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 110px 0 60px;
    }
    .hero-logo {
        width: 200px;
        margin-bottom: 16px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-gold);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    margin-left: 15px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Company Info Banner */
.company-info-banner {
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 20px 0;
    text-align: center;
}
.trusted-by {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trusted-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.trusted-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.trusted-item svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-navy);
}

.trusted-logo {
    height: 28px;
    width: auto;
}

.trusted-text strong {
    display: block;
    color: var(--primary-navy);
}

.trusted-text a,
.trusted-text span {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.trusted-cta {
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .trusted-content {
        justify-content: center;
        gap: 16px;
    }
    .trusted-cta {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-navy);
}

.faq-item p {
    margin-top: 10px;
    color: var(--medium-gray);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-subtitle {
    text-align: center;
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

details {
    background: var(--white);
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}

details summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-navy);
}

details p {
    margin-top: 10px;
    color: var(--medium-gray);
}

.faq-content.active {
    display: block;
}

.faq-subtitle {
    text-align: center;
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.company-info-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.company-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.company-info-item svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-navy);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-content {
    display: none;
}

.services-content.active {
    display: block;
}

.services-subtitle {
    text-align: center;
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.service-card h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-gold);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--medium-gray);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item svg {
    width: 30px;
    height: 30px;
    fill: var(--accent-gold);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: var(--primary-navy);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    font-family: Georgia, serif;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: var(--white);
}

.testimonials .section-title h2 {
    color: var(--white);
}

.testimonials .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-gold);
    line-height: 0;
    vertical-align: middle;
    margin-right: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--accent-gold);
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    color: var(--accent-gold);
    margin-top: 5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}
.contact a {
    color: var(--primary-navy);
    text-decoration: underline;
    background: transparent;
}

.contact a:hover {
    color: var(--accent-gold);
}

.company-info-banner a {
    color: var(--primary-navy);
    text-decoration: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-gold);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
    font-size: 1rem;
}

.contact-text a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--primary-navy-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom .reg-number {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .nav {
        gap: 20px;
    }
    
    .hero-logo {
        width: 280px;
    }
    
    .company-info-banner .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .trust-badges {
        padding: 25px 0;
        margin: 25px 0 20px;
    }
    
    .badge-logos {
        gap: 30px;
    }
    
    .badge-logo {
        height: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .trust-badges {
        padding: 20px 0;
        margin: 20px 0 15px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .badge-logos {
        gap: 20px;
        flex-direction: column;
    }
    
    .badge-logo {
        height: 38px;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .hero-logo {
        width: 220px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
