/* ============================================
   WINKLER DOOR COMPANY — STYLESHEET
   Vibrant Modern | Charcoal + Coral
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-charcoal: #2D2D2D;
    --color-charcoal-light: #3D3D3D;
    --color-charcoal-dark: #1A1A1A;
    --color-coral: #E85D4A;
    --color-coral-light: #F07866;
    --color-coral-dark: #D14A38;
    --color-white: #FFFFFF;
    --color-off-white: #F8F7F5;
    --color-light-gray: #F0EFED;
    --color-mid-gray: #949494;
    --color-text: #2D2D2D;
    --color-text-light: #6B6B6B;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.10);
    --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.14);
    --shadow-coral: 0 8px 30px rgba(232, 93, 74, 0.30);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-coral);
    color: var(--color-white);
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
    background: var(--color-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 93, 74, 0.40);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-charcoal);
}

.btn-outline-dark:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-charcoal);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--color-light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* ---------- Section Headers ---------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--color-coral);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--color-charcoal);
}

.logo-accent {
    color: var(--color-coral);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--color-text-light);
}

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

.nav-cta {
    background: var(--color-coral);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

.nav-cta:hover {
    background: var(--color-coral-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--color-charcoal);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-charcoal-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.mobile-close {
    color: var(--color-white);
    padding: 8px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--color-coral);
    padding-left: 8px;
}

.mobile-cta {
    border-bottom: none !important;
    background: var(--color-coral);
    color: var(--color-white) !important;
    text-align: center;
    border-radius: var(--radius-md);
    padding: 18px !important;
    margin-top: 16px;
}

.mobile-contact {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.88) 0%,
        rgba(45, 45, 45, 0.75) 50%,
        rgba(232, 93, 74, 0.30) 100%
    );
}

/* Geometric shapes */
.geo-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.geo-circle-1 {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: var(--color-coral);
    opacity: 0.12;
    top: -80px;
    right: -100px;
}

.geo-rect-1 {
    width: 200px;
    height: 200px;
    background: var(--color-coral);
    opacity: 0.08;
    bottom: 15%;
    right: 8%;
    border-radius: var(--radius-lg);
    transform: rotate(25deg);
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--color-coral);
    opacity: 0.10;
    top: 25%;
    right: 15%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 93, 74, 0.15);
    border: 1px solid rgba(232, 93, 74, 0.30);
    color: var(--color-coral-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.10;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.70;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--color-coral);
    border-radius: 3px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--color-off-white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 0;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 93, 74, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(232, 93, 74, 0.10), rgba(232, 93, 74, 0.04));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--color-coral);
}

.service-icon {
    color: var(--color-coral);
    transition: color var(--transition);
}

.service-card:hover .service-icon {
    color: var(--color-white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.70;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-coral);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Geometric band */
.geo-band {
    position: relative;
    height: 80px;
    background: var(--color-charcoal);
    overflow: hidden;
}

.geo-band-shapes {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 10%;
}

.geo-band-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-coral);
    opacity: 0.7;
}

.geo-band-square {
    width: 40px;
    height: 40px;
    background: var(--color-coral);
    opacity: 0.5;
    border-radius: 8px;
    transform: rotate(15deg);
}

.geo-band-triangle {
    width: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-bottom: 42px solid var(--color-coral);
    opacity: 0.6;
}

.geo-band-circle-sm {
    width: 28px;
    height: 28px;
    opacity: 0.4;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232, 93, 74, 0.04);
    top: -200px;
    left: -200px;
    pointer-events: none;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--color-white);
}

.about-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--color-coral);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-coral);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.80;
    margin-bottom: 18px;
}

.about-content > p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 36px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-coral);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-light-gray);
    flex-shrink: 0;
}

.about-content .btn {
    margin-top: 8px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 120px 0;
    background: var(--color-off-white);
    position: relative;
}

.gallery-accent {
    position: absolute;
    bottom: -60px;
    right: -60px;
    pointer-events: none;
}

.accent-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(232, 93, 74, 0.06);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
}

.gallery-item-large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item-large img {
    height: 100%;
    min-height: 400px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
    grid-column: span 5;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(4) img {
    height: 200px;
}

.gallery-item-wide {
    grid-column: span 12;
}

.gallery-item-wide img {
    height: 220px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(232, 93, 74, 0.06);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.testimonials .section-tag {
    color: var(--color-coral-light);
}

.testimonials .section-tag::before {
    background: var(--color-coral-light);
}

.testimonials .section-title {
    color: var(--color-white);
}

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

.testimonial-card {
    background: var(--color-charcoal-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 93, 74, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 28px;
}

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

.author-avatar {
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
}

.author-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0;
    background: var(--color-coral);
    position: relative;
    overflow: hidden;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.70;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* CTA geometric decorations */
.cta-geo {
    position: absolute;
    pointer-events: none;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    top: -100px;
    left: -80px;
}

.cta-circle-2 {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    bottom: -50px;
    right: 15%;
}

.cta-square-1 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    top: 20%;
    right: 5%;
    transform: rotate(30deg);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

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

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 93, 74, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-mid-gray);
}

.contact-text a,
.contact-text span {
    font-size: 16px;
    color: var(--color-charcoal);
    font-weight: 500;
    line-height: 1.5;
}

.contact-text a:hover {
    color: var(--color-coral);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
    position: relative;
}

.form-accent {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-coral-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    padding: 24px 32px 0;
}

.contact-form {
    background: var(--color-white);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-light-gray);
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-charcoal);
    background: var(--color-off-white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-coral);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(232, 93, 74, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-mid-gray);
}

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

.form-privacy {
    font-size: 13px;
    color: var(--color-mid-gray);
    text-align: center;
    margin-top: 16px;
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 32px;
}

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

.success-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: rgba(26, 122, 74, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 28px;
    line-height: 1.65;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-charcoal-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo-text {
    color: var(--color-white);
    font-size: 22px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.75;
    margin-top: 18px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-coral);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid [data-aos] { transition-delay: 0.1s; }
.services-grid [data-aos]:nth-child(2) { transition-delay: 0.2s; }
.services-grid [data-aos]:nth-child(3) { transition-delay: 0.3s; }
.services-grid [data-aos]:nth-child(4) { transition-delay: 0.4s; }

.testimonials-grid [data-aos] { transition-delay: 0.1s; }
.testimonials-grid [data-aos]:nth-child(2) { transition-delay: 0.2s; }
.testimonials-grid [data-aos]:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 100px 0 100px;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        justify-content: center;
    }
    
    .hero-trust {
        gap: 20px;
    }
    
    .geo-circle-1 {
        width: 250px;
        height: 250px;
    }
    
    .geo-rect-1 {
        width: 120px;
        height: 120px;
    }
    
    .geo-triangle-1 {
        display: none;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 32px 28px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -30px;
        width: 180px;
    }
    
    .about-img-main img {
        height: 360px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 48px;
        height: 1px;
    }
    
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item-large img {
        min-height: 260px;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
    
    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(4) img {
        height: 200px;
    }
    
    .gallery-item-wide {
        grid-column: span 2;
    }
    
    .gallery-item-wide img {
        height: 180px;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .cta-banner {
        padding: 80px 0;
    }
    
    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .hero-content {
        padding: 90px 0 80px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .about-img-secondary {
        width: 140px;
        bottom: -20px;
        right: -5px;
    }
    
    .about-img-secondary img {
        height: 120px;
    }
    
    .about-experience-badge {
        right: 10px;
        padding: 14px 18px;
    }
    
    .exp-number {
        font-size: 22px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item-wide {
        grid-column: span 1;
    }
    
    .contact-form {
        padding: 24px 20px;
    }
    
    .form-title {
        padding: 20px 20px 0;
    }
}
