/* ===================================
   Double Diamond Hair Salon Styles
   =================================== */

/* CSS Custom Properties */
:root {
    --forest-dark: #064E3B;
    --forest-primary: #065F46;
    --forest-medium: #059669;
    --forest-light: #10B981;
    --forest-pale: #D1FAE5;
    --forest-xpale: #ECFDF5;
    --off-white: #F8FAF8;
    --cream: #F0FDF4;
    --white: #FFFFFF;
    --text-dark: #1A2E23;
    --text-medium: #374151;
    --text-light: #6B7280;
    --text-on-dark: #F0FDF4;
    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.08);
    --shadow-md: 0 4px 20px rgba(6, 78, 59, 0.12);
    --shadow-lg: 0 10px 40px rgba(6, 78, 59, 0.16);
    --shadow-xl: 0 20px 60px rgba(6, 78, 59, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--text-dark);
}

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

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

ul {
    list-style: none;
}

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

.text-accent {
    color: var(--forest-medium);
}

/* Scroll Reveal Base (progressive enhancement) */
.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest-medium);
    color: var(--white);
    border-color: var(--forest-medium);
}

.btn-primary:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--forest-primary);
    border-color: var(--forest-primary);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-white {
    background: var(--white);
    color: var(--forest-primary);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

/* Section Headers */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest-pale);
    color: var(--forest-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 248, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--forest-dark);
}

.logo-diamond {
    width: 36px;
    height: 36px;
    background: var(--forest-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    color: var(--white);
}

.logo-light {
    color: var(--white);
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-medium);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    display: block;
}

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

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

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-primary) 50%, var(--forest-medium) 100%);
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(209, 250, 229, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Geometric Shapes */
.geo-shape {
    position: absolute;
    pointer-events: none;
}

.geo-diamond-1 {
    width: 120px;
    height: 120px;
    background: rgba(16, 185, 129, 0.2);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 15%;
    right: 8%;
    animation: float 6s ease-in-out infinite;
}

.geo-diamond-2 {
    width: 80px;
    height: 80px;
    background: rgba(209, 250, 229, 0.15);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 25%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.geo-circle-1 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(209, 250, 229, 0.1);
    border-radius: 50%;
    top: 10%;
    left: -50px;
    animation: float 10s ease-in-out infinite;
}

.geo-circle-2 {
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    bottom: 15%;
    left: 10%;
    animation: float 7s ease-in-out infinite reverse;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(209, 250, 229, 0.08);
    top: 40%;
    left: 5%;
    animation: spin 20s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(209, 250, 229, 0.15);
    border: 1px solid rgba(209, 250, 229, 0.3);
    color: var(--forest-pale);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.text-accent {
    color: var(--forest-pale);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(240, 253, 244, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn-outline {
    border-color: rgba(240, 253, 244, 0.5);
    color: var(--white);
}

.hero-actions .btn-outline:hover {
    background: var(--white);
    color: var(--forest-primary);
    border-color: var(--white);
}

/* Hero Cards */
.hero-cards {
    position: relative;
    height: 560px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card-main {
    width: 320px;
    height: 420px;
    right: 0;
    top: 20px;
}

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

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(6, 78, 59, 0.9));
    color: var(--white);
}

.card-diamond-accent {
    width: 40px;
    height: 40px;
    background: var(--forest-light);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin-bottom: 12px;
}

.hero-card-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Stat Cards */
.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--forest-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-primary);
    flex-shrink: 0;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.3;
}

.stat-card-1 {
    left: -20px;
    top: 0;
    animation: floatCard 5s ease-in-out infinite;
}

.stat-card-2 {
    right: 20px;
    top: 50px;
    animation: floatCard 6s ease-in-out infinite reverse;
}

.stat-card-3 {
    left: 10px;
    bottom: 0;
    animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.services-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--forest-pale);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.4;
    pointer-events: none;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(6, 78, 59, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--forest-light);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-dark), var(--forest-light));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-accent {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--forest-xpale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--forest-medium);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--forest-pale);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: -100px;
    left: -100px;
    opacity: 0.5;
    pointer-events: none;
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 360px;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

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

.about-img-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--forest-medium);
    border-radius: var(--radius-lg);
    top: 20px;
    left: 20px;
    z-index: 1;
}

.about-img-secondary {
    position: absolute;
    width: 260px;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    bottom: 0;
    right: 0;
    z-index: 3;
}

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

.about-exp-badge {
    position: absolute;
    width: 130px;
    height: 130px;
    background: var(--forest-medium);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 4;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-lg);
}

.about-exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.about-exp-text {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.3;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-diamond {
    width: 24px;
    height: 24px;
    background: var(--forest-pale);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-primary);
    flex-shrink: 0;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 100px 0;
    background: var(--off-white);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(6, 78, 59, 0.85));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

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

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

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 100px 0;
    background: var(--forest-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(209, 250, 229, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials .section-tag {
    background: rgba(209, 250, 229, 0.15);
    color: var(--forest-pale);
}

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

.testimonials .text-accent {
    color: var(--forest-pale);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(209, 250, 229, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(209, 250, 229, 0.25);
}

.testimonial-diamond {
    width: 48px;
    height: 48px;
    background: var(--forest-medium);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(240, 253, 244, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--forest-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.author-location {
    font-size: 0.8rem;
    color: rgba(240, 253, 244, 0.6);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
}

.cta-diamond-1 {
    width: 150px;
    height: 150px;
    background: rgba(209, 250, 229, 0.08);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: -30px;
    left: 10%;
}

.cta-diamond-2 {
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.15);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: -20px;
    right: 15%;
}

.cta-circle {
    width: 250px;
    height: 250px;
    border: 2px solid rgba(209, 250, 229, 0.08);
    border-radius: 50%;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(240, 253, 244, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--forest-light);
    transform: translateX(4px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--forest-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-primary);
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

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

.contact-card a {
    color: var(--forest-medium);
}

.contact-card a:hover {
    color: var(--forest-dark);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(6, 78, 59, 0.06);
}

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

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(6, 78, 59, 0.12);
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-medium);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--forest-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--forest-primary);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--forest-dark);
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--forest-dark);
    color: var(--text-on-dark);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
}

.footer-diamond-1 {
    width: 200px;
    height: 200px;
    background: rgba(16, 185, 129, 0.06);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: -50px;
    right: 10%;
}

.footer-diamond-2 {
    width: 120px;
    height: 120px;
    background: rgba(209, 250, 229, 0.05);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 50px;
    left: 5%;
}

.footer-circle {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(209, 250, 229, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand p {
    color: rgba(240, 253, 244, 0.7);
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(240, 253, 244, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--forest-pale);
    padding-left: 4px;
}

.footer-contact p {
    color: rgba(240, 253, 244, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(240, 253, 244, 0.7);
}

.footer-contact a:hover {
    color: var(--forest-pale);
}

.footer-bottom {
    border-top: 1px solid rgba(209, 250, 229, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(240, 253, 244, 0.5);
    font-size: 0.85rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-cards {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(248, 250, 248, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        border-bottom: 2px solid var(--forest-pale);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 380px;
    }
    
    .about-img-main {
        width: 260px;
        height: 340px;
    }
    
    .about-img-secondary {
        width: 180px;
        height: 220px;
    }
    
    .about-exp-badge {
        width: 100px;
        height: 100px;
    }
    
    .about-exp-number {
        font-size: 1.6rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item-wide {
        grid-column: span 2;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }
}
