/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e40af;
    --primary-blue-dark: #172e91;
    --primary-blue-light: #3b82f6;
    --secondary-red: #dc2626;
    --secondary-red-dark: #b91c1c;
    --secondary-red-light: #ff6b6b;
    --accent-indigo: #6366f1;
    --accent-cyan: #22d3ee;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: transparent;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(30, 64, 175, 0.85);
    box-shadow: 0 12px 30px -12px rgba(0,0,0,0.25);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: white;
}

.nav-brand .brand img {
    width: 110px;
    height: 110px;
    display: block;
}

.nav-brand .brand span {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--secondary-red);
    color: white;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: rgba(255,255,255,0.9);
    transition: width 0.25s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: radial-gradient(80vmax 50vmax at 15% 20%, rgba(255,255,255,0.08), transparent 40%),
                radial-gradient(60vmax 40vmax at 85% 10%, rgba(220,38,38,0.08), transparent 45%),
                linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 60vmax;
    height: 60vmax;
    left: -20vmax;
    top: -25vmax;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
    filter: blur(40px);
    animation: blob 12s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    width: 50vmax;
    height: 50vmax;
    right: -15vmax;
    bottom: -25vmax;
    background: radial-gradient(circle at 70% 70%, rgba(220,38,38,0.15), transparent 60%);
    filter: blur(40px);
    animation: blob 14s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-red-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(1.05);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 0;
}

.hero-watermark {
    position: absolute;
    inset: 0;
    width: 190%;
    height: 170%;
    object-fit: contain;
    opacity: 0.25;
    filter: saturate(0.9) contrast(1.05);
    pointer-events: none;
}

.hero-title,
.hero-subtitle,
.hero-description,
.hero-buttons {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:active::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.35);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% { width: 0; height: 0; opacity: 0.6; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-red) 0%, var(--secondary-red-dark) 60%, var(--accent-indigo) 120%);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.85);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background: var(--bg-light);
}

.legal-section {
    padding: 4rem 0;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.legal-accordion {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.legal-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-blue);
    background: transparent;
    border: none;
    cursor: pointer;
}

.legal-toggle .chevron {
    color: #6b7280;
    transition: var(--transition);
}

.legal-accordion.open .legal-toggle .chevron {
    transform: rotate(180deg);
}

.legal-content {
    border-top: 1px solid #e5e7eb;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
}

.legal-content img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}

.home-section {
    padding: 4rem 0;
}

.director-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
}

.director-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    border: 4px solid var(--primary-blue);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.director-content h3 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.director-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.company-brief .about-text p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--secondary-red);
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Page Titles */
.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 2rem;
}

.page-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page */
.about {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.about-content {
    margin-bottom: 3rem;
}

.about-text h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision,
.mission {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-red);
}

.vision h3,
.mission h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission ul {
    list-style: none;
    padding-left: 0;
}

.mission li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission li::before {
    content: "→";
    color: var(--secondary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Commitment Section */
.commitment {
    margin-top: 3rem;
}

.commitment h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.commitment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.commitment-card h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.commitment-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Page */
.services {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.services-grid-full {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-card-large {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    background: var(--primary-blue);
    color: white;
    font-size: 4rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.service-content ul {
    list-style: none;
    padding-left: 0;
}

.service-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-content li::before {
    content: "✓";
    color: var(--secondary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.cta-section h3 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Gallery Page */
.gallery {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    min-height: 250px;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2000;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content {
    background: var(--bg-white);
    border-radius: 1rem;
    width: min(1000px, 100%);
    max-height: 85vh;
    overflow: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding: 2rem;
    transform: translateY(10px) scale(0.98);
    transition: var(--transition);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-red);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--secondary-red-dark);
    transform: scale(1.05);
}

.modal-title {
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.modal-image-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.modal-image-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.modal-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.85);
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.modal-image-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Full Image Lightbox */
.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 2rem;
}
.image-lightbox.open { display: flex; }
.image-lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
}
.image-lightbox .lightbox-caption {
    color: #fff;
    margin-top: 0.75rem;
    text-align: center;
}
.image-lightbox .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-red);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background: #fff5f5;
    color: var(--text-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid #f0f0f0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    width: 150px;
    height: 150px;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 0.4rem 0;
    position: relative;
    padding-left: 1rem;
}

.footer-links li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-red);
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary-red);
}

.contact-item {
    margin: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
}

.contact-item::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--secondary-red);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.newsletter-form .send-btn {
    background: linear-gradient(135deg, var(--secondary-red) 0%, var(--secondary-red-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    width: 44px;
    height: 36px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.newsletter-status {
    margin-top: 0.5rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px dashed #f0caca;
    padding-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.footer-bottom .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffd9d9;
    color: var(--secondary-red);
    text-decoration: none;
}

.footer-bottom .social svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary-red);
    display: none;
}

.footer-bottom .social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.footer-bottom .social:hover {
    background: var(--secondary-red);
    color: #fff;
}

.footer-bottom .social:hover svg {
    fill: #fff;
}

.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    transition: var(--transition);
}

.scroll-top-fab {
    position: fixed;
    right: 20px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-indigo);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    transition: var(--transition);
}

.scroll-top-fab.show { display: inline-flex; }

.scroll-top-fab:hover { transform: scale(1.05); }

.whatsapp-fab:hover {
    transform: scale(1.05);
}

.whatsapp-fab svg {
    width: 26px;
    height: 26px;
    display: block;
    fill: currentColor;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .whatsapp-fab {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        width: 48px;
        height: 48px;
    }
    .whatsapp-fab svg {
        width: 22px;
        height: 22px;
    }
}
    .footer-brand img {
        width: 90px;
        height: 90px;
    }
}

/* Contact Page */
.contact {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
}

.contact-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.contact-info {
    margin-top: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-red);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-form form {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-group .error {
    border-color: var(--secondary-red);
}

.form-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-status {
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-brand .brand img {
        width: 44px;
        height: 44px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-content p {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blob {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
    100% { transform: translate(0,0) scale(1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(.2,.85,.25,1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-large {
        grid-template-columns: 1fr;
    }

    .service-image {
        min-height: 150px;
        font-size: 3rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .director-card {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .director-photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .modal-content {
        width: 100%;
        padding: 1.25rem;
    }

    .modal-image-item img {
        height: 140px;
    }
}

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .commitment-card {
        padding: 1.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 2rem;
    }
}
