#fullpage-particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}



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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #151515;
    line-height: 1.4;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    font-family: 'Playfair Display', 'Poppins', serif;
}

.section-subtitle {
    text-align: center;
    color: #5e5e5a;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 48px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-decoration: none;
    cursor: pointer;
}

.btn-wa {
    background-color: #25D366;
    color: white;
    box-shadow: 0 6px 14px rgba(37,211,102,0.25);
}
.btn-wa:hover {
    background-color: #1da95c;
    transform: translateY(-3px);
}

.btn-call {
    background-color: #0077b5;
    color: white;
    box-shadow: 0 6px 14px rgba(0,119,181,0.25);
}
.btn-call:hover {
    background-color: #005f8c;
    transform: translateY(-3px);
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e2a2a 0%, #2c3e2f 100%);
    z-index: 1000;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}
header.hide {
    transform: translateY(-100%);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 14px 0;
    position: relative;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffecd6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-decoration: none;
    font-family: 'Playfair Display', 'Poppins', serif;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #ffecd6;
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #fef9e6;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: linear-gradient(90deg, #ffecd6, #ff9900);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #ffdd99;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 70px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25)), url('img1.jpg') center center/cover no-repeat;
    z-index: 0;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 700px;
}
.hero-brand {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.hero-sub {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 16px;
}
.hero-tagline {
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 550px;
}
.dual-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* Stats Section with Particles */
.stats-section {
    position: relative;
    background: linear-gradient(135deg, #faf7f0 0%, #fff6e8 100%);
    overflow: hidden;
    padding: 80px 0;
}
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.stats-container {
    position: relative;
    z-index: 2;
}
.brand-image-strip img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 28px;
}
.company-description {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}
.company-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e2a2a;
}
.company-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #3a3a3a;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.stat-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border-radius: 32px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
    border: 1px solid rgba(218,165,32,0.3);
    transition: transform 0.3s;
}
.stat-card:hover {
    transform: translateY(-6px);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: #2c5f2d;
    margin-bottom: 12px;
}
.stat-number span {
    display: inline-block;
}
.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1e2a2a;
    letter-spacing: -0.2px;
}

/* Wider Cards Grids */
.pillars-grid, .spec-grid, .info-grid, .testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}
.pillar-card, .spec-card, .info-card, .testimonial-card {
    flex: 1;
    min-width: 320px;  /* increased width */
    max-width: 380px;
    background: #ffffff;
    border-radius: 36px;
    padding: 24px 20px 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(218, 165, 32, 0.5);
}
.pillar-card:hover, .spec-card:hover, .info-card:hover, .testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(218, 165, 32, 0.9);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}
.pillar-card img, .info-card img {
    width: 100%;
    height: 260px;  /* slightly taller for wider cards */
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.spec-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 20px;
}
.testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 3px solid #e0d6c0;
}
.pillar-card h3, .spec-card h3, .info-card h3, .testimonial-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.spec-card h3 {
    font-size: 1.6rem;
}
.info-card p, .pillar-card p, .spec-card p {
    color: #4a4f47;
    line-height: 1.5;
}

/* Footer & Map */
.footer-section {
    background: #f9f7f2;
    border-radius: 48px 48px 0 0;
    margin-top: 20px;
    padding: 60px 0 20px;
}
.map-widget iframe {
    width: 100%;
    height: 280px;
    border-radius: 28px;
    border: 0;
    box-shadow: 0 12px 26px rgba(0,0,0,0.05);
}
.testimonials-after-map {
    margin-top: 48px;
    margin-bottom: 40px;
}
.office-address {
    text-align: center;
    margin: 24px 0 12px;
}
.office-address h3 {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}
.call-center {
    text-align: center;
}
.call-studio-btn {
    background: #111e1c;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 18px 38px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    margin: 20px 0;
    transition: background 0.2s;
}
.call-studio-btn:hover {
    background: #2c5e2d;
}
.contact-details-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin: 16px 0 20px;
    font-weight: 500;
}
.hours-info {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 10px 0 20px;
}
.copyright {
    text-align: center;
    padding: 24px 0 0;
    border-top: 1px solid #e2e0d6;
    color: #5b5b50;
    font-size: 0.8rem;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    display: none;
    justify-content: space-between;
    padding: 12px 20px;
    z-index: 200;
    gap: 12px;
}
.mobile-bar-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 56px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}
.wa-bar { background: #25D366; color: white; }
.call-bar { background: #0077b5; color: white; }

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1e2a2a 0%, #2c3e2f 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 12px rgba(0,0,0,0.2);
        border-radius: 0 20px 20px 0;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
    }
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 85px; }
    .hero-brand { font-size: 2.4rem; }
    .pillar-card img, .info-card img { height: 220px; }
    .spec-card img { height: 200px; }
    .stat-number { font-size: 2.2rem; }
    .company-description h2 { font-size: 1.6rem; }
    .container { padding: 0 20px; }
    section { padding: 60px 0; }
    .hero { margin-top: 65px; }
    .pillar-card, .spec-card, .info-card, .testimonial-card { min-width: 280px; }
}

@media (max-width: 650px) {
    .header-flex { flex-wrap: nowrap; }
    .stats-grid { gap: 20px; }
}