/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

:root {
    --primary-green: #76c043;
    --dark-green: #4a9d2e;
    --gold: #d4af37;
    --light-gold: #f4d03f;
    --dark-gold: #b8941e;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-gray);
    overflow-x: hidden;
    height: 100%;
    margin: 0;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background: #000000 url('images/hero-image.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.0rem 5%;
    backdrop-filter: blur(5px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-gold));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mobile-social {
    display: none;
}

.social-icons-mobile {
    display: none;
}

.social-link {
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 103;
    position: relative;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active {
    position: fixed;
    right: 5%;
    top: 1rem;
}

.mobile-menu-toggle.active span {
    background: var(--gold);
}

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

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

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 2rem 5%;
    max-width: 1400px;
    width: 100%;
}

.hero-logo {
    max-width: 450px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 150px;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-family: Georgia, 'Times New Roman', serif;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: Georgia, 'Times New Roman', serif;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    box-shadow: 0 10px 30px rgba(118, 192, 67, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(118, 192, 67, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0%, 20% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        padding: 1rem 5%;
        z-index: 100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--gold);
        overflow-y: auto;
        z-index: 101;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-social {
        display: block;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        list-style: none;
    }

    .social-icons-mobile {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .social-icons {
        display: none;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .logo {
        height: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 3%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 1rem 3%;
    }

    .logo {
        height: 50px;
    }
}

/* Services Section */
.services {
    position: relative;
    background: url('images/hero-image1.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    padding: 5rem 5%;
    z-index: 50;
    margin-top: 0px;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary-green), transparent);
    z-index: 2;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.services-grid .service-card:nth-child(-n+3) {
    grid-column: span 2;
}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 3;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(60px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--dark-green);
    transform: translateX(5px);
}

.service-link:hover::after {
    width: 100%;
}

/* Expanded Services Section */
.expanded-services {
    background: #fff;
}

.service-detail {
    padding: 5rem 5%;
    background: #fff;
}

.service-detail.alt {
    background: #f9f9f9;
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.service-detail.alt .service-detail-container {
    grid-template-columns: 1fr 1fr;
}

.service-detail-content {
    padding: 2rem 0;
}

.service-detail-label {
    display: inline-block;
    color: var(--primary-green);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-title {
    font-size: 3rem;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-detail-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-service-detail {
    background: var(--primary-green);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service-detail:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(118, 192, 67, 0.4);
}

.service-detail-image-main {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.service-detail-image-main::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.service-detail-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail-image-main:hover img {
    transform: scale(1.05);
}

/* Service Gallery */
.service-detail-gallery {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Service Info Boxes */
.service-detail-info {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-info-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail.alt .service-info-box {
    background: #fff;
}

.service-info-title {
    font-size: 1.5rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-info-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-info-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

/* Responsive Expanded Services */
@media (max-width: 968px) {
    .service-detail {
        padding: 4rem 3%;
    }

    .service-detail-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail.alt .service-detail-container {
        grid-template-columns: 1fr;
    }

    .service-detail.alt .service-detail-content {
        order: 1;
    }

    .service-detail.alt .service-detail-image-main {
        order: 2;
    }

    .service-detail-title {
        font-size: 2.2rem;
    }

    .service-detail-image-main {
        height: 350px;
    }

    .service-detail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .service-detail-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-info-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-detail {
        padding: 3rem 3%;
    }

    .service-detail-title {
        font-size: 1.8rem;
    }

    .service-detail-text {
        font-size: 0.95rem;
    }

    .service-detail-image-main {
        height: 280px;
    }

    .service-detail-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 220px;
    }

    .service-info-box {
        padding: 1.5rem;
    }

    .service-info-title {
        font-size: 1.3rem;
    }
}

/* COC Section */
.coc-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.coc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(118, 192, 67, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(118, 192, 67, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.coc-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coc-content {
    text-align: center;
}

.coc-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.coc-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.coc-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto 60px;
}

.coc-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.coc-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(118, 192, 67, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.coc-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    background: rgba(118, 192, 67, 0.05);
    box-shadow: 0 10px 30px rgba(118, 192, 67, 0.2);
}

.coc-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    color: #fff;
    font-size: 1.75rem;
}

.coc-feature-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.coc-feature-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.938rem;
}

.coc-cta {
    background: linear-gradient(135deg, rgba(118, 192, 67, 0.1), rgba(74, 157, 46, 0.1));
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.coc-cta-title {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.coc-cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.coc-cta .btn {
    margin: 0;
}

/* Responsive for COC Section */
@media (max-width: 968px) {
    .coc-section {
        padding: 80px 20px;
    }

    .coc-title {
        font-size: 2rem;
    }

    .coc-description {
        font-size: 1rem;
    }

    .coc-features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .coc-cta {
        padding: 40px 30px;
    }

    .coc-cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .coc-section {
        padding: 60px 15px;
    }

    .coc-title {
        font-size: 1.75rem;
    }

    .coc-feature-card {
        padding: 30px 20px;
    }

    .coc-cta {
        padding: 30px 20px;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
}

.footer-main {
    padding: 4rem 5% 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.footer-tagline {
    color: var(--gold);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom-links .websuit-link {
    color: var(--gold);
    font-weight: 500;
}

.footer-bottom-links .websuit-link:hover {
    color: var(--light-gold);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-main {
        padding: 3rem 3% 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2.5rem 3% 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column:first-child {
        grid-column: 1;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 1.5rem 3%;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Services */
@media (max-width: 968px) {
    .services {
        padding: 4rem 3%;
        margin-top: -50px;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 3rem 3%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-image {
        height: 200px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-green);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-link {
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--light-gold);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: var(--primary-green);
    color: white;
}

.cookie-accept:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 192, 67, 0.4);
}

.cookie-decline {
    background: transparent;
    color: var(--light-gray);
    border: 2px solid var(--light-gray);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
        min-width: auto;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.75);
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.625rem;
    }
}
