/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.logo h2 {
    color: #000000;
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.logo a:hover h2 {
    color: #eaaa0e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #eaaa0e;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #eaaa0e;
    background: rgba(234, 170, 14, 0.08);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #eaaa0e 0%, #d29a0c 100%);
    box-shadow: 0 4px 12px rgba(234, 170, 14, 0.3);
}

.nav-link.active::before {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1.5s ease-in-out;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 170, 14, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature .icon {
    font-size: 2rem;
}

.feature span {
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: #eaaa0e;
    color: #000000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d29a0c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Service Areas */
.service-areas {
    padding: 80px 0 60px;
    background: #f8f9fa;
    position: relative;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.service-areas h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.areas-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 50px;
    align-items: start;
}

.counties-section h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 25px;
}

.counties-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.counties-list li {
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    color: #eaaa0e;
    font-weight: 700;
    font-size: 1.3rem;
}

.areas-map-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.county-map {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-details {
    max-width: 1100px;
    margin: 50px auto 0;
    padding-top: 40px;
    border-top: 2px solid #eaaa0e;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-text strong {
    display: block;
    color: #000;
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-text p {
    color: #eaaa0e;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Certifications Section */
.certifications-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.certifications-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 15px;
}

.certifications-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.certifications-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.cert-item {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(234, 170, 14, 0.3);
}

.cert-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.about-preview h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
}

.about-preview p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Background Image Slider */
.services-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.services-preview .container {
    position: relative;
    z-index: 3;
}

.services-preview h2 {
    font-size: 2.5rem;
    color: #eaaa0e;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.services-preview > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(255, 184, 28, 0.4);
}

.service-card h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.service-link {
    color: #eaaa0e;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.service-link:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.reason {
    text-align: center;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: #eaaa0e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.reason h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.reason p {
    color: #666;
}

/* Stats Section */
.stats-hero {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.stats-layout {
    display: flex;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-left {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 20px;
}

.stats-eyebrow {
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-headline {
    font-size: 3rem;
    margin: 0 0 30px 0;
    color: #000;
    line-height: 1.1;
    font-weight: 700;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.stat {
    background: transparent;
    padding: 10px 0;
}

.stat .big {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 10px 0;
    color: #eaaa0e;
}

.stat p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.stats-cta {
    margin-top: 30px;
    display: inline-block;
    background: #eaaa0e;
    color: #000;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.stats-cta:hover {
    background: #d29a0c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 170, 14, 0.3);
}

.stats-right {
    flex: 1;
    min-width: 360px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stats-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.stats-overlay {
    position: absolute;
    left: 10%;
    bottom: 8%;
    background: #eaaa0e;
    color: #fff;
    padding: 24px 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    max-width: 420px;
}

.circle {
    width: 88px;
    height: 88px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circle .number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.stats-overlay .text {
    max-width: 270px;
    font-size: 15px;
    line-height: 1.3;
}

.progress-ring__circle {
    transition: stroke-dashoffset 1s ease-out;
    transform-origin: 50% 50%;
}

/* Instagram Reel Section */
.instagram-reel-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.instagram-reel-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.instagram-reel-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.reel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.reel-item {
    width: 100%;
}

.reel-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.reel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.reel-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reel-wrapper:hover .reel-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.instagram-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-size: 0.9rem;
}

.ig-logo {
    width: 20px;
    height: 20px;
}

.instagram-follow {
    margin-top: 20px;
}

.follow-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.follow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.ig-logo-btn {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #eaaa0e 0%, #d29a0c 100%);
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-button {
    background: white;
    color: #000000;
}

.final-cta .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #100e0a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 150px repeat(3, 1fr) 150px;
    gap: 40px;
    align-items: start;
}

.footer-logo-left,
.footer-logo-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 180px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #eaaa0e;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #eaaa0e;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #000000;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle h2 {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .feature {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .counties-section h3 {
        font-size: 1.5rem;
    }

    .counties-list li {
        font-size: 1.1rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .certifications-section h2 {
        font-size: 2rem;
    }

    .certifications-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .cert-item {
        width: 220px;
        height: 160px;
        padding: 20px;
    }

    .carousel-track {
        gap: 40px;
    }

    .stats-layout {
        flex-direction: column;
        gap: 40px;
    }

    .stats-right {
        order: -1;
        height: 300px;
        min-width: auto;
    }

    .stats-right img {
        min-height: 300px;
    }

    .stats-headline {
        font-size: 2rem;
    }

    .stat .big {
        font-size: 2.5rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-overlay {
        left: 6%;
        bottom: 6%;
        padding: 18px 20px;
    }

    .about-preview h2,
    .services-preview h2,
    .why-choose-us h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .reel-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .reel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .reel-wrapper {
        aspect-ratio: 9/16;
    }

    .instagram-reel-section h2 {
        font-size: 2rem;
    }

    .play-icon {
        font-size: 2.5rem;
    }

    .instagram-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .ig-logo {
        width: 16px;
        height: 16px;
    }

    .follow-button {
        font-size: 1rem;
        padding: 12px 28px;
    }

    .ig-logo-btn {
        width: 20px;
        height: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-left,
    .footer-logo-right {
        display: none;
    }
}

/* Scroll reveal utilities */
.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-slow {
    transition-duration: 900ms;
}

.reveal-left {
    transform: translateX(-20px) scale(0.99);
}

.reveal-right {
    transform: translateX(20px) scale(0.99);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
