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

:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --nav-bg: #ffffff;
    --section-bg: #f8f9fa;
    --card-bg: #ffffff;
    --primary-color: #667eea;
    --secondary-color: #2c3e50;
    --shadow: rgba(0,0,0,0.1);
}

[data-theme="dark"] {
    --bg-color: #0f0f0f;
    --text-color: #e0e0e0;
    --nav-bg: #1a1a1a;
    --section-bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --primary-color: #667eea;
    --secondary-color: #4ecdc4;
    --shadow: rgba(0,0,0,0.5);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--nav-bg);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-logo-img {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    object-fit: cover;
}

[data-theme="dark"] .nav-logo-img {
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.6);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #667eea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .logo-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 3px 15px rgba(102, 126, 234, 0.4);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.logo a:hover .logo-icon::before {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo a:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

[data-theme="dark"] .logo a:hover .logo-icon {
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.6);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

[data-theme="dark"] .logo-text {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: -1;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    background: #667eea;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: #764ba2;
}

/* Sections */
section {
    padding: 60px 0;
}

.intro {
    background: var(--section-bg);
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro blockquote {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: var(--primary-color);
    margin: 2rem 0;
    font-weight: 600;
}

/* Services Grid */
.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

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

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

[data-theme="dark"] .service-image {
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* About Page Styles */
.vision-mission {
    background: var(--section-bg);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.vision-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.vision-image, .mission-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

[data-theme="dark"] .vision-image,
[data-theme="dark"] .mission-image {
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.5);
}

.section-image:hover {
    transform: scale(1.05);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.mission-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.core-values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

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

.value-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: background-color 0.3s;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.mission {
    background: var(--section-bg);
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

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

.mission-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: background-color 0.3s;
}

.mission-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.purpose {
    text-align: center;
}

.purpose h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.purpose p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Page */
.service-category {
    padding: 60px 0;
}

.service-category:nth-child(even) {
    background: var(--section-bg);
}

.service-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.service-header.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.service-header-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s;
}

[data-theme="dark"] .service-header-image {
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.5);
}

.service-header-image:hover {
    transform: scale(1.05);
}

[data-theme="dark"] .service-header-image:hover {
    box-shadow: 0 0 35px rgba(192, 192, 192, 0.7);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

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

.service-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow);
    transition: background-color 0.3s;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-form {
    padding: 60px 0;
}

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

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--shadow);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    background: var(--section-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.contact-info-single {
    background: var(--section-bg);
    padding: 3rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: background-color 0.3s;
}

.quote-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #667eea;
}

.btn-quote {
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: #667eea;
    color: white;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-section p {
    margin-bottom: 0.5rem;
}

.map-section {
    background: var(--section-bg);
    padding: 60px 0;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 5px;
}

[data-theme="dark"] .footer-logo-img {
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: #667eea;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.social-links a[href*="linkedin"] {
    background: #0077b5;
}

.social-links a[href*="linkedin"]:hover {
    background: #005582;
}

.social-links a[href*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #d07d2d 0%, #c85a32 25%, #b81f39 50%, #a81d5a 75%, #9c1476 100%);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Team Section */
.team {
    padding: 60px 0;
    background: var(--section-bg);
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

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

.team-member {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s, background-color 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #667eea;
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
    cursor: pointer;
}

[data-theme="dark"] .gallery-image {
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.gallery-image:hover {
    transform: scale(1.05);
}

[data-theme="dark"] .gallery-image:hover {
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.8);
}

.gallery-nav {
    background: #667eea;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: #764ba2;
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalImage {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: #667eea;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2001;
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

.modal-nav:hover {
    background: #764ba2;
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Navigation */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--nav-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    z-index: 999;
    box-shadow: 0 2px 10px var(--shadow);
}

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

.nav-menu.active a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.nav-menu.active a:hover {
    background: var(--section-bg);
}

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .intro h2, .services-preview h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-single {
        padding: 2rem;
    }
    
    .btn-quote {
        font-size: 1rem;
        padding: 12px 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-image {
        order: -1;
    }
    
    .service-header,
    .service-header.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-header-image {
        height: 200px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1rem;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .modal-nav.prev {
        left: 10px;
    }
    
    .modal-nav.next {
        right: 10px;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .nav-logo-img {
        width: 30px;
        height: 30px;
    }
    
    .value-icon, .service-icon {
        font-size: 1.5rem;
    }
    
    .mission-number {
        font-size: 2rem;
    }
    
    .values-banner {
        height: 150px;
    }
}

/* Gallery Categories */
.gallery-categories {
    padding: 60px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 30px;
    background: var(--card-bg);
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.category-tab:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.category-tab.active {
    background: #667eea;
    color: white;
}

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

/* Upload Section */
.upload-trigger {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.upload-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 10px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    box-shadow: 2px 0 10px var(--shadow);
    transition: all 0.3s;
}

.upload-btn:hover {
    background: #1a2a3a;
    padding-right: 15px;
}

.upload-drawer {
    position: fixed;
    left: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--card-bg);
    box-shadow: 2px 0 20px var(--shadow);
    transition: left 0.3s;
    z-index: 1500;
    overflow-y: auto;
}

.upload-drawer.open {
    left: 0;
}

.upload-drawer-header {
    background: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upload-drawer-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-drawer {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.close-drawer:hover {
    opacity: 0.7;
}

.upload-drawer-content {
    padding: 2rem;
}

.upload-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.upload-select {
    padding: 12px 20px;
    border: 2px solid #667eea;
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.upload-input {
    padding: 10px;
    border: 2px solid #667eea;
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--secondary-color);
    cursor: pointer;
}

.btn-upload {
    padding: 12px 30px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-upload:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

.contact-info-card {
    background: var(--card-bg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0.3rem 0;
}

.quote-btn-wrapper {
    margin-top: auto;
}

.map-container {
    position: relative;
    background: var(--section-bg);
}

.map-container iframe {
    display: block;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .value-item, .mission-item {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .upload-controls {
        flex-direction: column;
        width: 100%;
    }
    
    .upload-select,
.upload-input,
.btn-upload {
    width: 100%;
}
}

/* Snackbar */
.snackbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #323232;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.snackbar.show {
    opacity: 1;
}

/* Quote Modal */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.quote-modal-content {
    position: relative;
    background: var(--card-bg);
    margin: 3% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quote-modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.quote-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.quote-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.quote-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.quote-modal-body {
    padding: 0;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.quote-modal-body iframe {
    display: block;
    width: 100%;
    border: none;
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
}

.quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--shadow);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .quote-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .quote-modal-header {
        padding: 1.5rem;
    }
    
    .quote-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .quote-modal-body {
        max-height: calc(95vh - 90px);
    }
}