/*
Theme Name: Clifton Heights
Theme URI: https://cliftonheights.co.ke
Author: Clifton Heights Ltd
Author URI: https://cliftonheights.co.ke
Description: A modern dark-themed WordPress theme for construction companies. Features responsive design, smooth animations, and sections for services, projects, and contact information.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clifton-heights
Domain Path: /languages
Tags: construction, business, dark, responsive, modern, corporate
*/

/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. CSS Variables & Reset
   2. Base Styles
   3. Typography
   4. Layout
   5. Navigation
   6. Hero Section
   7. About Section
   8. Services Section
   9. Projects Section
   10. Values Section
   11. Contact Section
   12. Footer
   13. Utilities
   14. Responsive
   ======================================== */

/* ========================================
   1. CSS VARIABLES & RESET
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-dark: #1a1a1a;
    --color-dark-gray: #2d2d2d;
    --color-medium-gray: #4a4a4a;
    --color-light-gray: #f5f5f5;
    --color-gold: #c9a962;
    --color-gold-light: #e0c78a;
    --color-white: #ffffff;
    --color-text: #ffffff;
    --color-text-muted: #9ca3af;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.7s ease;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 20px rgba(201, 169, 98, 0.3);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   2. BASE STYLES
   ======================================== */

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

a:hover {
    color: var(--color-gold-light);
}

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

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

/* ========================================
   3. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.text-gold {
    color: var(--color-gold);
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   4. LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 5rem;
    }
}

.section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 0;
    }
}

/* Blueprint Grid Background */
.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Noise Overlay */
.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   5. NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-medium);
}

.site-header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-dark);
}

.logo-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--color-gold);
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-fast);
}

.main-nav a:hover {
    color: var(--color-gold);
}

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

/* CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-gold);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-dark-gray);
    border-radius: 8px;
}

.mobile-menu-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 80px 0 0 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 2rem 1.5rem;
    transform: translateX(-100%);
    transition: transform var(--transition-medium);
}

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

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    color: var(--color-white);
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
}

.mobile-menu a:hover {
    color: var(--color-gold);
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 8rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-medium-gray);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-dark-gray);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Hero Image */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-dark) 0%, transparent 50%);
    z-index: 2;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-dark) 0%, transparent 30%);
    z-index: 2;
}

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

@media (min-width: 1024px) {
    .hero-image {
        width: 55%;
    }
    
    .hero-image::before {
        background: linear-gradient(to right, var(--color-dark) 0%, transparent 40%);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

/* ========================================
   7. ABOUT SECTION
   ======================================== */

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background-color: var(--color-gold);
}

.section-label span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background-color: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 8px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color var(--transition-fast);
}

.feature-item:hover {
    background-color: rgba(45, 45, 45, 0.3);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

@media (min-width: 1024px) {
    .about-image img {
        height: 600px;
    }
}

.image-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--color-dark-gray);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.image-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.image-badge .badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.image-frame {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
    z-index: -1;
}

/* ========================================
   8. SERVICES SECTION
   ======================================== */

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-label {
    justify-content: center;
}

.services-header .section-label::before,
.services-header .section-label::after {
    content: '';
    width: 32px;
    height: 2px;
    background-color: var(--color-gold);
}

/* Services Accordion */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .services-accordion {
        flex-direction: row;
        height: 500px;
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: flex var(--transition-medium);
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1;
    }
    
    .service-card:hover,
    .service-card.active {
        flex: 3;
    }
}

.service-card-bg {
    position: absolute;
    inset: 0;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-bg {
    transform: scale(1.1);
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-dark) 0%, transparent 100%);
    transition: opacity var(--transition-medium);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, var(--color-dark) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.service-card-content {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-dark-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

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

.service-title-group h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.service-title-group span {
    font-size: 0.75rem;
    color: var(--color-gold);
}

.service-card-body {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

@media (min-width: 1024px) {
    .service-card:hover .service-card-body,
    .service-card.active .service-card-body {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1023px) {
    .service-card-body {
        opacity: 1;
        transform: none;
        margin-top: 1rem;
    }
}

.service-card-body p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-feature {
    padding: 0.25rem 0.75rem;
    background-color: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(74, 74, 74, 0.5);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gold);
}

.service-link:hover {
    color: var(--color-gold-light);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(4px);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 169, 98, 0.1);
    line-height: 1;
}

/* ========================================
   9. PROJECTS SECTION
   ======================================== */

.projects-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .projects-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.projects-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    position: relative;
    background-color: var(--color-dark-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-fast);
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-dark) 0%, transparent 60%);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.project-card:hover .project-image-overlay {
    opacity: 0.9;
}

.project-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.project-category span {
    padding: 0.25rem 0.75rem;
    background-color: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.project-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-fast);
}

.project-card:hover .project-arrow {
    opacity: 1;
    transform: translateX(0);
}

.project-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.project-card:hover .project-content h3 {
    color: var(--color-gold);
}

.project-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-meta svg {
    width: 14px;
    height: 14px;
}

.project-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-fast);
}

.project-card:hover .project-border {
    width: 100%;
}

/* Projects Stats */
.projects-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 8px;
}

@media (min-width: 640px) {
    .projects-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.projects-stats .stat-item {
    text-align: center;
}

.projects-stats .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.projects-stats .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* ========================================
   10. VALUES SECTION
   ======================================== */

.values-section {
    background: linear-gradient(to bottom, var(--color-dark) 0%, var(--color-dark-gray) 100%);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header .section-label {
    justify-content: center;
}

.values-header .section-label::before,
.values-header .section-label::after {
    content: '';
    width: 32px;
    height: 2px;
    background-color: var(--color-gold);
}

/* SDG Cards */
.sdg-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .sdg-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sdg-card {
    position: relative;
    padding: 2rem;
    background-color: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: all var(--transition-fast);
}

.sdg-card:hover {
    border-color: rgba(201, 169, 98, 0.5);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.1);
}

.sdg-goal {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 64px;
    height: 64px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdg-goal span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.sdg-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(74, 74, 74, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
}

.sdg-card:hover .sdg-icon {
    background-color: var(--color-gold);
}

.sdg-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

.sdg-card:hover .sdg-icon svg {
    color: var(--color-dark);
}

.sdg-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.sdg-card:hover h3 {
    color: var(--color-gold);
}

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

/* Commitments */
.commitments-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .commitments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 8px;
}

.commitment-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.commitment-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.commitment-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.commitment-item p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Quote */
.values-quote {
    text-align: center;
    margin-top: 4rem;
}

.values-quote blockquote {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quote-author::before,
.quote-author::after {
    content: '';
    width: 32px;
    height: 2px;
    background-color: var(--color-gold);
}

.quote-author span {
    font-size: 0.875rem;
    color: var(--color-gold);
}

/* ========================================
   11. CONTACT SECTION
   ======================================== */

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-label {
    justify-content: center;
}

.contact-header .section-label::before,
.contact-header .section-label::after {
    content: '';
    width: 32px;
    height: 2px;
    background-color: var(--color-gold);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.contact-item:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    white-space: pre-line;
}

/* Map Placeholder */
.contact-map {
    position: relative;
    height: 200px;
    background-color: var(--color-dark-gray);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-content {
    text-align: center;
}

.contact-map-content svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    margin: 0 auto 0.5rem;
}

.contact-map-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.contact-map-content span {
    font-size: 0.75rem;
    color: var(--color-medium-gray);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
    padding: 2rem;
    background-color: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.contact-form-wrapper::before,
.contact-form-wrapper::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: rgba(201, 169, 98, 0.3);
    border-style: solid;
}

.contact-form-wrapper::before {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
    border-top-right-radius: 12px;
}

.contact-form-wrapper::after {
    bottom: 0;
    left: 0;
    border-width: 0 0 2px 2px;
    border-bottom-left-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.form-control {
    padding: 0.75rem 1rem;
    background-color: var(--color-dark);
    border: 1px solid var(--color-medium-gray);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-control::placeholder {
    color: var(--color-medium-gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Success Message */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    text-align: center;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.form-success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-text-muted);
    margin: 0;
}

/* ========================================
   12. FOOTER
   ======================================== */

.site-footer {
    background-color: var(--color-dark-gray);
    position: relative;
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Footer Brand */
.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

/* Footer Links */
.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* Footer Contact */
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    white-space: pre-line;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(74, 74, 74, 0.3);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.footer-bottom span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.scroll-to-top {
    width: 40px;
    height: 40px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.scroll-to-top:hover {
    background-color: var(--color-gold-light);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    color: var(--color-dark);
}

/* ========================================
   13. UTILITIES
   ======================================== */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

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

.animate-fade-in {
    animation: fadeIn 0.7s ease forwards;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   14. RESPONSIVE
   ======================================== */

@media (max-width: 639px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .image-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .scroll-indicator,
    .scroll-to-top,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 2rem 0;
    }
}
