* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #64748b;
    --dark: #0f172a;
    --light: #f0f9ff;
    --white: #ffffff;
    --accent: #10b981;
    --gradient: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: var(--primary);
}

.cta-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Map Preview */
.map-preview {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.grid-line {
    position: absolute;
    background: var(--primary);
}

.grid-line.h1 { top: 25%; left: 0; right: 0; height: 1px; }
.grid-line.h2 { top: 50%; left: 0; right: 0; height: 1px; }
.grid-line.h3 { top: 75%; left: 0; right: 0; height: 1px; }
.grid-line.v1 { left: 25%; top: 0; bottom: 0; width: 1px; }
.grid-line.v2 { left: 50%; top: 0; bottom: 0; width: 1px; }
.grid-line.v3 { left: 75%; top: 0; bottom: 0; width: 1px; }

.map-terrain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.terrain {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.terrain.t1 {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    top: 30%;
    left: 20%;
    transform: rotate(-15deg);
}

.terrain.t2 {
    width: 150px;
    height: 100px;
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    top: 50%;
    left: 50%;
    transform: rotate(10deg);
}

.terrain.t3 {
    width: 180px;
    height: 120px;
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    top: 20%;
    right: 15%;
    transform: rotate(-5deg);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--secondary);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.map-sample {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Map Type 1 - Topografi */
.map1 {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.contour {
    position: absolute;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    opacity: 0.6;
}

.contour.c1 {
    width: 120px;
    height: 80px;
    top: 30%;
    left: 20%;
}

.contour.c2 {
    width: 160px;
    height: 100px;
    top: 20%;
    left: 15%;
}

.contour.c3 {
    width: 200px;
    height: 120px;
    top: 10%;
    left: 10%;
}

.river {
    position: absolute;
    width: 3px;
    height: 150%;
    background: linear-gradient(180deg, #0ea5e9 0%, #06b6d4 100%);
    top: -20%;
    left: 60%;
    transform: rotate(15deg);
}

/* Map Type 2 - Tematik */
.map2 {
    background: #f1f5f9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    padding: 10px;
}

.zone {
    border-radius: 4px;
}

.zone.z1 { background: #fbbf24; }
.zone.z2 { background: #34d399; }
.zone.z3 { background: #60a5fa; }
.zone.z4 { background: #f87171; }

/* Map Type 3 - Bidang Tanah */
.map3 {
    background: #fef3c7;
    padding: 20px;
}

.parcel {
    position: absolute;
    border: 2px solid #92400e;
    background: rgba(217, 119, 6, 0.2);
}

.parcel.p1 { width: 80px; height: 60px; top: 20%; left: 10%; }
.parcel.p2 { width: 70px; height: 50px; top: 25%; left: 35%; }
.parcel.p3 { width: 90px; height: 55px; top: 50%; left: 15%; }
.parcel.p4 { width: 75px; height: 65px; top: 45%; left: 50%; }
.parcel.p5 { width: 85px; height: 45px; top: 65%; left: 30%; }

/* Map Type 4 - Drone */
.map4 {
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
}

.drone-photo {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%234ade80" width="100" height="100"/><circle fill="%2322c55e" cx="30" cy="40" r="15"/><circle fill="%2316a34a" cx="70" cy="60" r="20"/><rect fill="%2315803d" x="50" y="20" width="25" height="15"/></svg>');
    background-size: cover;
    border-radius: 8px;
}

.annotation {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #dc2626;
    border-radius: 50%;
}

.annotation.a1 { top: 30%; left: 25%; }
.annotation.a2 { top: 55%; left: 65%; }

.portfolio-info {
    padding: 20px;
}

.portfolio-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.portfolio-info span {
    color: var(--secondary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.portfolio-info span i {
    color: var(--primary);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.step {
    text-align: center;
    padding: 30px;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.step-connector {
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--secondary);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--secondary);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--secondary);
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section .logo {
    color: white;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
    transition: transform 0.3s;
    color: white;
    font-size: 1.5rem;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
}

.chat-box.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-header {
    background: var(--gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
}

.message {
    margin-bottom: 15px;
}

.message.bot p {
    background: var(--light);
    padding: 10px 15px;
    border-radius: 12px;
    display: inline-block;
    max-width: 80%;
}

.message.user {
    text-align: right;
}

.message.user p {
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    display: inline-block;
    max-width: 80%;
}

.chat-input {
    display: flex;
    padding: 15px;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-input button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s;
}

.chat-input button:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .map-preview {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .step-connector {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .cta-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .chat-box {
        width: 300px;
        right: -10px;
    }
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Page Header */
.page-header {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header h1 i {
    color: var(--primary);
}

.page-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-main h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-main h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.service-main p {
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.benefit-list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.spec-table {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table td:first-child {
    width: 40%;
    color: var(--dark);
}

.spec-table td:last-child {
    color: var(--secondary);
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.service-nav {
    list-style: none;
}

.service-nav li {
    margin-bottom: 8px;
}

.service-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--dark);
    border-radius: 8px;
    transition: all 0.3s;
}

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

.service-nav a i {
    width: 20px;
    text-align: center;
}

.cta-card {
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-card h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-card .btn-primary {
    background: white;
    color: var(--primary);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.about-stat .stat-label {
    font-size: 0.85rem;
    color: var(--secondary);
}

.about-card {
    background: var(--gradient);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.about-card i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light);
    border-radius: 16px;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card > span {
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: white;
}

.contact-form-full {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
}

.contact-form-full h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.social-section h4 {
    margin-bottom: 15px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    height: 400px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder span {
    color: var(--secondary);
}

/* Responsive for new pages */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        order: -1;
    }

    .mission-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}
