/* 
   Kymaru Construction - Redesign
   Color Scheme: Black, White, Blue
*/

:root {
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A; 
    --bg-darker: #020617;
    --primary-blue: #89CFF0; /* Baby Blue */
    --primary-blue-hover: #7ABCE0;
    --primary-blue-soft: rgba(137, 207, 240, 0.1);
    
    --text-dark: #0F172A;
    --text-muted: #475569;
    --text-light: #F8FAFC;
    --text-light-muted: #94A3B8;
    --text-on-primary: #0F172A; /* Dark text for light blue background */
    
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1280px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo-text, .btn {
    font-family: 'Outfit', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.bg-light { background-color: var(--bg-white); }
.bg-gradient-light { background: linear-gradient(180deg, #F1F5F9 0%, #F8FAFC 100%); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-blue { background-color: var(--primary-blue); color: var(--text-on-primary); }

.text-blue { color: var(--primary-blue); }
.text-muted { color: var(--text-muted); }
.text-light-muted { color: var(--text-light-muted); }
.text-center { text-align: center; }

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 8vw, 4rem); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.5rem, 5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1rem, 3vw, 1.25rem); margin-bottom: 0.5rem; }

.subtitle {
    font-size: clamp(0.7rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 9999px; /* Pill shape */
    text-align: center;
    cursor: pointer;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-on-primary);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-light);
}

.logo img {
    height: 70px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .site-header.scrolled .main-nav.active .nav-links a {
        color: var(--text-light);
    }
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translateY(14px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

/* Hero Section */
.hero {
    height: calc(100vh - 90px);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    color: var(--text-light);
}

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%), 
                radial-gradient(circle at center, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-container-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content-centered {
    max-width: 900px;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.hero-content-centered h1 {
    color: var(--text-light);
    font-size: clamp(2.5rem, 10vw, 6rem);
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.hero-content-centered p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin: 0 auto 3rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-actions-centered {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Removed trust-card-centered */

/* About Stats */
.about-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 2.5rem;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Removed old image-stack styles */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    color: var(--text-light);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.floating-card strong {
    color: var(--text-light) !important;
    font-size: 0.9rem;
}

.floating-card .card-text span {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem;
}

.review-card-layered {
    transform: translateX(-40px) translateY(-10px);
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border: none;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.review-card-layered strong {
    color: var(--text-dark) !important;
    display: block;
    margin-bottom: 0.2rem;
}

.review-card-layered .card-text span {
    color: var(--text-muted) !important;
}

.review-card-layered .stars {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stats-badge {
    background: var(--primary-blue);
    border-radius: 24px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--text-on-primary);
    box-shadow: 0 20px 40px rgba(137, 207, 240, 0.3);
    animation: fadeInRight 1s ease-out 0.3s both;
}

.stat.divider {
    width: 1px;
    height: 40px;
    background: rgba(15, 23, 42, 0.1);
}

.stats-badge .stat {
    display: flex;
    flex-direction: column;
}

.stats-badge .stat strong {
    font-size: 2rem;
    line-height: 1;
}

.stats-badge .stat span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    color: rgba(15, 23, 42, 0.6);
}

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

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

/* Services Section */
.services {
    padding: 10rem 0 5rem; /* Top padding to account for hero image overlap */
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.services-cta {
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-darker);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 3px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: attr(data-number);
    position: absolute;
    top: 1rem;
    right: 1.8rem;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    pointer-events: none;
}

.service-card:hover {
    border-top-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-blue-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: var(--text-on-primary);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

/* About Premium Split */
.about-premium {
    padding: 10rem 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text-side h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-text-side p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.about-clients {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.about-clients-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-clients-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.about-clients-logos img {
    height: 85px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.about-clients-logos img:hover {
    opacity: 1;
}

/* Stats Strip */
.stats-strip {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stats-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stats-strip-item strong {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-strip-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-light-muted);
}

.stats-strip-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.about-image-side {
    position: relative;
}

.blueprint-card {
    background: var(--bg-white);
    padding: 0.6rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: visible;
}

.blueprint-card img:first-child {
    width: 100%;
    height: 500px;
    max-height: 60vw;
    object-fit: cover;
    border-radius: 15px;
}


.experience-badge {
    position: absolute;
    top: 5rem;
    left: -1.5rem;
    background: var(--primary-blue);
    color: var(--text-on-primary);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(137, 207, 240, 0.4);
    z-index: 5;
    text-align: center;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 24px rgba(137, 207, 240, 0.4);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 18px 36px rgba(137, 207, 240, 0.6);
    }
}

.experience-badge strong {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    opacity: 0.85;
}

.mission-tag {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.mission-tag .icon {
    font-size: 1.5rem;
}

.tag-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.tag-text p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-premium { padding: 6rem 0; }
}

.mission-card .icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.125rem;
}

.mission-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
}

.benefits-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.benefit-card {
    background: var(--bg-darker);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card .icon {
    font-size: 1.5rem;
    background: var(--primary-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.benefit-card p {
    color: var(--text-light-muted);
    font-size: 0.875rem;
}

/* Projects Section */
.projects {
    padding: 8rem 0;
}

.projects-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.project-showcase {
    position: relative;
    margin-bottom: 2rem;
}

.project-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--bg-white);
    padding: 1.5rem 3rem;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.project-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.2;
}

.project-details h3 {
    margin: 0;
}

.project-details p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    max-width: 300px;
}

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

.project-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Transformation Section */
.transformation {
    padding: 8rem 0;
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-slider {
    position: relative;
    width: 100%;
    user-select: none;
    cursor: ew-resize;
}

.after-image {
    width: 100%;
    height: auto;
    display: block;
}

.before-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.before-image {
    height: 100% !important;
    max-width: none !important;
    display: block;
    /* width is set dynamically by JS to match the full slider width */
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 4px;
    background: white;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.handle-line {
    flex-grow: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.handle-button {
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.label {
    position: absolute;
    bottom: 2rem;
    padding: 0.5rem 1.2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 99px;
    z-index: 3;
    pointer-events: none;
}

.label-before {
    left: 2rem;
}

.label-after {
    right: 2rem;
}

/* Footer */
footer {
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section h4 {
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-brand {
    grid-column: 1;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-brand .logo img {
    height: 100px;
}

.footer-brand p {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links-list,
.footer-contact-list,
.footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list li a,
.footer-contact-list li a {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-list li a:hover,
.footer-contact-list li a:hover {
    color: var(--primary-blue);
}

.footer-contact-list li,
.footer-hours-list li {
    color: var(--text-light-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light-muted);
    font-size: 0.85rem;
}

.footer-credit {
    font-size: 0.85rem;
    margin: 0;
}

.footer-credit a {
    color: var(--text-light-muted);
    transition: var(--transition);
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--primary-blue);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-light-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.info-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.info-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive */
/* Testimonials */
.testimonials {
    padding: 8rem 0;
}

.testimonial-carousel {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(50% - 0.75rem);
    background: var(--bg-white);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.testimonial-card > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-blue-soft);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.t-prev, .t-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: var(--bg-white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.t-prev:hover, .t-next:hover {
    background: var(--primary-blue);
    color: var(--text-on-primary);
    border-color: var(--primary-blue);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.t-dot.active {
    background: var(--primary-blue);
    width: 24px;
    border-radius: 4px;
}


/* Contact Redesign - 2 Column Layout */
.contact-premium {
    padding: 8rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    padding-right: 2rem;
}

.contact-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--primary-blue-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-info-item:hover .contact-icon-wrap {
    background: var(--primary-blue);
    color: var(--text-on-primary);
    transform: translateY(-2px);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.info-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    word-break: break-all;
    overflow-wrap: break-word;
    font-family: 'Outfit', sans-serif;
}

.contact-form-side {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 100px;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.6;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group-minimal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group-minimal label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group-minimal input,
.form-group-minimal textarea,
.form-group-minimal select {
    border: none;
    border-bottom: 2px solid #E2E8F0;
    padding: 1rem 0;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: transparent;
    width: 100%;
    color: var(--text-dark);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-group-minimal select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
}

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

.btn-premium {
    background: var(--bg-dark);
    color: var(--text-light);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    width: fit-content;
}

.btn-premium:hover {
    background: var(--primary-blue);
    color: var(--text-on-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(137, 207, 240, 0.3);
}

.form-success {
    display: none;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4ade80;
    text-align: center;
}

.form-success.visible {
    display: block;
}

@media (max-width: 1200px) {
    .contact-split { gap: 3rem; }
    .contact-details { padding-right: 1rem; }
    .contact-form-side { padding: 2.5rem; }
}

@media (max-width: 1024px) {
    .contact-split { grid-template-columns: 1fr; gap: 2rem; }
    .contact-details { padding-right: 0; }
    .contact-form-side { position: relative; top: 0; }
    .contact-header h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .contact-form-side { padding: 2rem 1.5rem; }
    .contact-header h2 { font-size: 1.8rem; }
    .contact-header p { margin-bottom: 2rem; }
    .contact-info-list { gap: 2rem; }

    /* About section mobile fixes */
    .about-image-side { overflow: hidden; }
    .blueprint-card { overflow: hidden; }
    .blueprint-card img:first-child { height: auto; max-height: none; }
    .experience-badge { left: 0.5rem; top: 0.75rem; padding: 0.75rem 1rem; }
    .experience-badge strong { font-size: 1.5rem; }
    .about-clients-logos { gap: 1.5rem; flex-wrap: wrap; }
    .about-clients-logos img { height: 60px; }

    /* Stats strip — 2 columns, 2 rows */
    .stats-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-strip-divider { display: none; }
    .stats-strip-item { flex: unset; }

    /* Mission card — keep inside container */
    .mission-card { position: static; margin-top: 1.5rem; max-width: 100%; width: 100%; box-sizing: border-box; }

    /* Form row — stack to single column */
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero-container { flex-direction: column; gap: 2rem; }
    .hero-floating-cards { flex-direction: row; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .mission-card { position: static; margin-top: 2rem; max-width: 100%; }
    .benefits-header, .projects-header { grid-template-columns: 1fr; gap: 1rem; }
    .project-info { position: static; border-radius: var(--border-radius); margin-top: 1rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 1024px) {
    .mobile-menu-btn { display: flex; }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        max-height: 300px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 2rem;
    }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .testimonial-card { min-width: 100%; }
    .testimonial-track { gap: 0; }
    h1 { font-size: 2.5rem; }
    .hero-floating-cards { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .benefits-grid, .project-gallery { grid-template-columns: 1fr; }
    .stats-badge { right: 1rem; bottom: 1rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: span 1; }
    .footer-section h4 { margin-bottom: 1rem; }
    .footer-bottom { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0; }
    .footer-bottom p { display: inline; }
    .footer-credit::before { content: ' · '; }
}

@media (min-width: 769px) {
    .t-dot:last-child { display: none; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
}
