/* ============================================
   DC-Network - Premium Cybersecurity Website
   Color Palette: Blue (#1E3A8A, #3B82F6), Green (#10B981), White
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #1E3A8A;
    --primary-blue-light: #3B82F6;
    --primary-green: #10B981;
    --primary-green-dark: #059669;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #037571, #019d98, #037571);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10, 122, 104, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 168, 134, 0.5);
}

.btn-outline {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
    top: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
    bottom: 20%;
    left: 15%;
    animation: float 10s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-4 {
    width: 30px;
    height: 30px;
    background: var(--primary-blue-light);
    top: 40%;
    right: 20%;
    animation: float 7s ease-in-out infinite;
    border-radius: 4px;
    transform: rotate(45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Logo Image Styles */
.logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 30px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 50%, rgba(59, 130, 246, 0.05) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.typing-text {
    color: var(--primary-blue);
}

.cursor {
    color: var(--primary-green);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 300px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    min-width: 120px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue-light), var(--primary-green));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-out;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
    min-width: 50px;
    text-align: right;
}

/* Hero Graphic - Server Infrastructure Image */
.hero-graphic {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-server-image {
    width: 120%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: darken;
    filter: brightness(1.05);
}

.isometric-servers {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(800px) rotateX(10deg) rotateY(-10deg);
}

.server {
    position: absolute;
    width: 80px;
    height: 120px;
    animation: serverFloat 3s ease-in-out infinite;
}

.server-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.server-2 {
    top: 30%;
    left: 40%;
    animation-delay: 0.5s;
}

.server-3 {
    top: 40%;
    left: 70%;
    animation-delay: 1s;
}

@keyframes serverFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.server-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.server-body::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.server-lights {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-green);
    animation: blink 1.5s ease-in-out infinite;
}

.light:nth-child(2) {
    animation-delay: 0.3s;
}

.light:nth-child(3) {
    animation-delay: 0.6s;
}

.data-lines {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 200px;
    transform: translateY(-50%);
}

.data-flow-svg {
    width: 100%;
    height: 100%;
}

.data-line {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 2;
    stroke-dasharray: 10 5;
    animation: dataFlow 2s linear infinite;
}

.data-line.delay-1 {
    animation-delay: 0.3s;
    stroke: var(--primary-blue-light);
}

.data-line.delay-2 {
    animation-delay: 0.6s;
}

@keyframes dataFlow {
    from {
        stroke-dashoffset: 30;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.9;
    }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
}

/* Trust Section */
.trust-section {
    background: var(--off-white);
    padding: 40px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    width: fit-content;
    margin: 0 auto;
}

.trust-icon svg {
    display: block;
}

.trust-text {
    font-size: 16px;
    color: var(--gray-700);
}

.trust-text strong {
    color: var(--primary-green);
    font-size: 24px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.services-section .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #506d6c 0%, #24cac5 50%, #506d6c 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue-light), var(--primary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    position: relative;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Leadership Team Section */
.team-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-card-inner {
    position: relative;
}

.team-photo {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 16px;
}

.team-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-4px);
}

.team-social svg {
    width: 20px;
    height: 20px;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Gallery Section - 3D Photo Slider */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: var(--white);
}

.photo-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    height: 500px;
    perspective: 1500px;
}

.photo-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-card {
    position: absolute;
    width: 500px;
    height: 350px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-200px) scale(0.8) rotateY(-15deg);
    pointer-events: none;
    z-index: 1;
}

.photo-card.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 3;
    pointer-events: auto;
}

.photo-card.next {
    opacity: 0.7;
    transform: translateX(300px) scale(0.85) rotateY(15deg);
    z-index: 2;
    pointer-events: auto;
}

.photo-card.prev {
    opacity: 0.7;
    transform: translateX(-300px) scale(0.85) rotateY(-15deg);
    z-index: 2;
    pointer-events: auto;
}

.photo-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    transition: transform 0.3s ease;
}

.photo-card.active img {
    transform: scale(1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-card.active .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.photo-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

.about-stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* Globe Animation */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.globe {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.3);
}

.globe::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 10s linear infinite;
}

.orbit-1 {
    width: 250px;
    height: 250px;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-green);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white), var(--white));
    overflow: hidden;
}

.clients-marquee {
    margin-top: 40px;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 80s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    padding: 15px 30px;
    background: var(--gray-100);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gray-900) 100%);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-green);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-desc {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Location Map Section */
.location-map-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.location-map-wrapper iframe {
    display: block;
    width: 100%;
    transition: var(--transition);
}

.location-map-wrapper:hover iframe {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.location-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.location-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    border-left: 4px solid var(--primary-green);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.location-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.location-card strong {
    color: var(--gray-900);
    display: block;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--off-white);
    }

    .nav-link {
        display: block;
        padding: 16px 0;
    }

    .header .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-cta .btn:first-child {
        padding: 12px 24px;
    }

    /* Photo Slider Mobile */
    .photo-slider-wrapper {
        height: 350px;
    }

    .photo-card {
        width: 90%;
        max-width: 400px;
        height: 280px;
    }

    .photo-card.prev,
    .photo-card.next {
        transform: scale(0.7) rotateY(0deg);
        opacity: 0.3;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .photo-overlay h3 {
        font-size: 20px;
    }

    .photo-overlay p {
        font-size: 14px;
    }

    .hero-graphic {
        height: 300px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        margin-top: 40px;
        /* Safe space on mobile */
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Location Map Mobile */
    .location-map-wrapper iframe {
        height: 300px !important;
        border-radius: 8px !important;
    }

    .location-overlay {
        position: static;
        margin-top: 20px;
    }

    .location-card {
        max-width: 100%;
        box-shadow: var(--shadow-md);
    }

    .location-card h3 {
        font-size: 18px;
    }

    .location-card p {
        font-size: 13px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animations on scroll */
.service-card,
.about-content,
.about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible,
.about-content.visible,
.about-image.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 769px) {
    .map-container {
        margin-top: -65px;
        /* Pull up on desktop */
    }
}