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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(255, 231, 171, 0.20), transparent 22%),
                radial-gradient(circle at bottom right, rgba(31, 78, 58, 0.08), transparent 20%),
                #ffffff;
    min-height: 100vh;
}

:root {
    --primary: #1f4d45;
    --secondary: #1a3c67;
    --accent: #d29b2d;
    --accent-soft: rgba(210, 155, 45, 0.15);
    --surface: #ffffff;
    --surface-soft: #f5f7f9;
    --surface-alt: #fbfcfd;
    --text: #16212e;
    --text-light: #ffffff;
    --muted: #5e6b84;
    --shadow: 0 18px 50px rgba(23, 52, 42, 0.08);
    --shadow-dark: 0 16px 38px rgba(26, 60, 94, 0.12);
    --border-radius: 10px;
    --border-radius-large: 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text);
}

h2 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: visible;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: -0.8rem;
    width: 60px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    opacity: 0.85;
    transform: translateX(-10px);
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    animation: accentGlow 2.8s ease-in-out infinite alternate;
}

h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

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

.section-subtitle {
    max-width: 800px;
    margin: 1rem auto 3rem;
    color: var(--muted);
    line-height: 1.9;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(31, 78, 58, 0.08);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu.active {
    position: absolute;
    top: 100%;
    left: 2rem;
    right: 2rem;
    background: var(--surface);
    border: 1px solid #e5e7eb;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
    background: rgba(210, 155, 45, 0.12);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    position: relative;
    z-index: 1200;
    flex-direction: column;
    justify-content: space-between;
    width: 34px;
    height: 24px;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: var(--surface-soft);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--text);
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    position: relative;
    display: grid;
    place-items: center;
    padding: 120px 0 4rem;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(255, 231, 171, 0.22), transparent 28%),
                radial-gradient(circle at bottom right, rgba(31, 78, 58, 0.12), transparent 24%),
                linear-gradient(180deg, #fffdf8 0%, #f7f9fb 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 15%, rgba(210, 155, 45, 0.18), transparent 18%),
                      radial-gradient(circle at 85% 80%, rgba(27, 77, 59, 0.10), transparent 22%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(210, 155, 45, 0.24), rgba(31, 78, 58, 0.08));
    top: 8%;
    right: -5%;
    filter: blur(30px);
    pointer-events: none;
}

.hero-logo-bg {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background-image: url('../images/last final (27 x 11.43 cm).png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out both;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(210, 155, 45, 0.12);
    box-shadow: 0 28px 90px rgba(31, 78, 58, 0.08);
    max-width: 760px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
}

.hero-content::before {
    content: '';
    position: absolute;
    right: -32px;
    top: -32px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(210, 155, 45, 0.18);
    filter: blur(16px);
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.hero-content::after {
    content: '';
    position: absolute;
    left: -28px;
    bottom: -28px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(26, 60, 94, 0.12);
    filter: blur(12px);
    z-index: -1;
    animation: float 12s ease-in-out infinite reverse;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text);
    max-width: 700px;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    color: #4d5f72;
    margin: 2rem 0 3rem;
    line-height: 1.75;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-ghost:hover {
    background: var(--secondary);
    color: var(--text-light);
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary);
    border: 2px solid transparent;
    box-shadow: 0 14px 35px rgba(31, 78, 58, 0.08);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(31, 78, 58, 0.16);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--text-light);
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-secondary {
    background: rgba(31, 78, 58, 0.08);
    color: var(--secondary);
    border-color: rgba(31, 78, 58, 0.18);
}

.btn-secondary:hover {
    background: rgba(31, 78, 58, 0.14);
    color: var(--secondary);
}

.hero-image {
    position: relative;
    display: grid;
    place-items: center;
    max-width: 420px;
    justify-self: end;
    padding: 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--border-radius-large);
    background: var(--surface);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--surface-soft);
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    background: var(--surface);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text strong {
    color: var(--text);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--surface);
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text);
}

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

.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-toggle-btn {
    display: none;
    border: 1px solid var(--text);
    background: var(--surface);
    color: var(--text);
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-toggle-btn:hover {
    background: var(--surface-soft);
}

.services-content {
    transition: max-height 0.35s ease, opacity 0.35s ease;
    overflow: hidden;
    max-height: 10000px;
    opacity: 1;
}

@media (max-width: 768px) {
    .services-toggle-btn {
        display: inline-flex;
    }

    .services-content.services-collapsed {
        max-height: 0;
        opacity: 0;
        pointer-events: none;
    }

    .services.showing .services-content {
        max-height: 10000px;
        opacity: 1;
        pointer-events: auto;
    }
}

.service-card {
    background: linear-gradient(180deg, #ffffff, var(--surface-alt));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 24px 60px rgba(31, 78, 58, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(31, 78, 58, 0.08);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 70px rgba(31, 78, 58, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(210, 155, 45, 0.16), rgba(31, 78, 58, 0.08));
    color: var(--secondary);
    font-size: 2rem;
    border: 1px solid rgba(31, 78, 58, 0.12);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--surface-soft);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(210, 155, 45, 0.1);
    filter: blur(28px);
    z-index: 0;
    animation: float 14s ease-in-out infinite;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(26, 60, 94, 0.08);
    filter: blur(18px);
    z-index: 0;
    animation: float 12s ease-in-out infinite reverse;
}

.gallery-subsection h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text);
    position: relative;
}

.gallery-subsection h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    margin: 1.5rem auto 0;
    border-radius: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 24px 50px rgba(35, 66, 59, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(180deg, #ffffff, #f7f9fb);
    border: 1px solid rgba(31, 78, 58, 0.08);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 70px;
    height: 70px;
    border-radius: 24px;
    background: rgba(210, 155, 45, 0.12);
    transform: rotate(25deg);
    pointer-events: none;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 2px solid rgba(26, 60, 94, 0.14);
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(35, 66, 59, 0.12);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    border-radius: var(--border-radius);
    display: block;
}

.gallery-item.crop-center img {
    object-position: center center;
}

.gallery-item.crop-top img {
    object-position: center top;
}

.gallery-item.crop-bottom img,
.gallery-item.crop-bottom video {
    object-position: center bottom;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.03);
}

.video-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    background: #000;
}

.video-frame video {
    width: 100%;
    height: auto;
    max-height: 220px;
    aspect-ratio: 16/9;
    object-fit: contain;
    border-radius: calc(var(--border-radius) - 2px);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--surface-soft);
}

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

.testimonial-card {
    background: linear-gradient(180deg, #ffffff, #f7f9fb);
    border: 1px solid rgba(31, 78, 58, 0.08);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 24px 55px rgba(31, 78, 58, 0.06);
    border-left: 5px solid rgba(210, 155, 45, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 66px rgba(31, 78, 58, 0.11);
}

.testimonial-content {
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(45, 90, 71, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

/* Team Section */
.team {
    padding: 4rem 0;
    background: var(--surface-soft);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.team-member {
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #f7f9fb);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 24px 50px rgba(31, 78, 58, 0.06);
    border: 1px solid rgba(31, 78, 58, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(31, 78, 58, 0.10);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: 0 18px 45px rgba(31, 78, 58, 0.08);
    border: 4px solid rgba(210, 155, 45, 0.18);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Crop from bottom to show face */
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
}

.team-member p {
    color: var(--muted);
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

.team-links {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.team-links a {
    color: var(--text-light);
    background: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.team-links a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.anchor-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    margin-top: 1rem;
}

.anchor-links h4 {
    font-size: 1.3rem;
    color: var(--text);
    margin: 0;
}

.anchor-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.anchor-buttons a {
    color: var(--text-light);
    background: var(--primary);
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.anchor-buttons a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.anchor-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 1rem;
}

.anchor-links a {
    color: var(--text-light);
    background: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.anchor-links a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--surface-soft);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2.5rem;
}

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

.location-card {
    padding: 2.5rem;
    background: linear-gradient(180deg, #ffffff, #f7f9fb);
    border: 1px solid rgba(31, 78, 58, 0.08);
    border-radius: var(--border-radius);
    box-shadow: 0 24px 55px rgba(31, 78, 58, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(31, 78, 58, 0.10);
}

.location-card h4 {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
}

.location-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.location-card p:last-child {
    margin-bottom: 0;
}

.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(180deg, #ffffff, #f7f9fb);
    border: 1px solid rgba(31, 78, 58, 0.08);
    padding: 1.2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 24px 55px rgba(31, 78, 58, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-item:hover {
    transform: translateY(-3px);
}

.social-item p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-dark);
}

.contact-form {
    background: var(--surface);
    border: 1px solid #e5e7eb;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.3rem 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 71, 0.1);
}

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

footer {
    background: linear-gradient(135deg, #15263f, #1b4461);
    color: white;
    padding: 2rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.7fr 1.2fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
    border-radius: 0;
    background: none;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: none;
    opacity: 1;
    display: block;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.5rem;
}

.footer-links li {
    margin-bottom: 0;
}

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

.footer-links a:hover {
    color: white;
}

.footer-offices {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-office {
    flex: 1 1 45%;
    min-width: 180px;
}

.footer-office h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-office p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.2rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social .social-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.footer-social .social-link:hover {
    color: white;
}

.footer-social .social-link i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: white;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-12px) translateX(6px);
    }
}

@keyframes accentGlow {
    from {
        opacity: 0.8;
        width: 80px;
    }
    to {
        opacity: 1;
        width: 90px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 1.5rem 2rem;
        z-index: 1200;
        background: var(--surface);
        border: 1px solid #e5e7eb;
        border-radius: var(--border-radius-large);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu.active li {
        margin: 0;
        padding: 0;
    }

    .nav-menu.active a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu.active a:last-child {
        border-bottom: none;
    }

    .hero {
        padding-top: 120px;
    }

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

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

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .location-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .social-media {
        justify-content: center;
    }

    .team-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 540px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
        justify-content: space-between;
    }

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

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .team-grid,
    .location-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        gap: 1rem;
    }

    .services-grid .service-card,
    .testimonials-grid .testimonial-card,
    .team-grid .team-member,
    .gallery-grid .gallery-item,
    .location-grid .location-card {
        padding: 1.5rem;
    }

    .about-content,
    .contact-content {
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 420px) {
    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .team-grid,
    .location-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        gap: 0.85rem;
    }

    .services-grid .service-card,
    .gallery-grid .gallery-item,
    .testimonials-grid .testimonial-card,
    .team-grid .team-member,
    .location-grid .location-card {
        padding: 1.2rem;
    }
}

@media (max-width: 360px) {
    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .team-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
}
}

@media (max-width: 420px) {
    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .team-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
}
/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-offices {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-links {
        justify-content: center;
        gap: 0.75rem 1.5rem;
    }

    .footer-offices {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social {
        gap: 0.5rem;
    }

    .footer-bottom {
        padding-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}
