/* ========================================
   ELEVE ENERGY - Main Stylesheet
   ======================================== */

/* ========================================
   CSS VARIABLES - Color Scheme
   ======================================== */
:root {
    /* Primary Colors */
    --deep-purple: #3A1C5A;
    --deep-purple-dark: #2A1040;
    --deep-purple-light: #4B1D6A;
    
    /* Secondary Colors */
    --midnight-blue: #0E1A2B;
    --midnight-blue-light: #1C2740;
    
    /* Accent Colors */
    --gold: #C9A24D;
    --gold-light: #E6C97A;
    --ivory: #F6F1EB;
    --rose-gold: #D4A5A5;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--ivory);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--deep-purple);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

strong {
    color: var(--deep-purple);
    font-weight: 600;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--midnight-blue) 100%);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.nav-brand h1 {
    color: var(--gold);
    font-size: 1.75rem;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 700;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--ivory);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: var(--spacing-md);
}

.hero-title {
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: var(--ivory);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
}

.hero-description {
    color: var(--ivory);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 162, 77, 0.8);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
    border-radius: 5px;
}

.slider-btn:hover {
    background: rgba(201, 162, 77, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid var(--gold);
}

.indicator:hover,
.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

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

/* ========================================
   BUTTONS
   ======================================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--deep-purple);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.belief-box {
    background: linear-gradient(135deg, var(--deep-purple-light) 0%, var(--midnight-blue-light) 100%);
    padding: var(--spacing-lg);
    border-radius: 15px;
    margin-top: var(--spacing-md);
}

.belief-statement {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.belief-highlight {
    color: var(--ivory);
    font-size: 2rem;
    margin: 0;
}

/* ========================================
   HELP SECTION
   ======================================== */
.help-section {
    background-color: var(--ivory);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--deep-purple);
    margin-bottom: var(--spacing-lg);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.help-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(58, 28, 90, 0.15);
    border-color: var(--gold);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.help-card h3 {
    color: var(--deep-purple);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.help-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--midnight-blue) 100%);
    color: var(--ivory);
}

.why-section .section-title {
    color: var(--gold);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.why-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.check-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.why-item h3 {
    color: var(--ivory);
    font-size: 1.1rem;
    margin: 0;
}

/* ========================================
   MESSAGE SECTION
   ======================================== */
.message-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

.message-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.1), rgba(230, 201, 122, 0.1));
    border-radius: 15px;
    border-left: 5px solid var(--gold);
}

.message-main {
    font-size: 2rem;
    color: var(--deep-purple);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.message-sub {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-section h2 {
    color: var(--deep-purple);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    color: var(--midnight-blue);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.cta-section .cta-button {
    background: var(--deep-purple);
    color: var(--gold);
}

.cta-section .cta-button:hover {
    background: var(--midnight-blue);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--midnight-blue) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    color: var(--ivory);
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ========================================
   CONTENT SECTION
   ======================================== */
.content-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.content-box.centered {
    text-align: center;
}

.content-box h2 {
    color: var(--deep-purple);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
    background-color: var(--ivory);
    padding: var(--spacing-xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.values-column {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
}

.values-heading {
    color: var(--deep-purple);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    border-radius: 8px;
}

.values-list.against li {
    background-color: rgba(255, 0, 0, 0.05);
    color: #c0392b;
}

.values-list.promote li {
    background-color: rgba(201, 162, 77, 0.1);
    color: var(--deep-purple);
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder-section {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--midnight-blue) 100%);
    color: var(--ivory);
    padding: var(--spacing-xl) 0;
}

.founder-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.founder-photo-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.founder-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid var(--gold);
    box-shadow: 0 8px 25px rgba(201, 162, 77, 0.4);
    transition: var(--transition-normal);
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(201, 162, 77, 0.6);
}

.founder-header h2 {
    color: var(--gold);
    font-size: 2.5rem;
}

.founder-name {
    color: var(--ivory);
    font-size: 2rem;
    margin: var(--spacing-sm) 0;
}

.founder-title {
    color: var(--rose-gold);
    font-size: 1.1rem;
}

.founder-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.founder-approach,
.founder-style {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 15px;
}

.founder-approach h4,
.founder-style h4 {
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.approach-list {
    list-style: none;
}

.approach-list li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
}

.approach-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.style-item {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.style-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.founder-quote {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.founder-quote blockquote {
    background: rgba(201, 162, 77, 0.2);
    padding: var(--spacing-lg);
    border-radius: 15px;
    border-left: 5px solid var(--gold);
}

.founder-quote p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ivory);
    margin: 0 0 var(--spacing-sm) 0;
}

.founder-quote cite {
    color: var(--gold);
    font-size: 1.1rem;
    font-style: normal;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background-color: var(--ivory);
    padding: var(--spacing-xl) 0;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(58, 28, 90, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    color: var(--deep-purple);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.service-details h4 {
    color: var(--midnight-blue);
    font-size: 1.2rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.service-details ul {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-details li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.service-outcome {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.1), rgba(230, 201, 122, 0.1));
    padding: var(--spacing-md);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    margin-top: var(--spacing-md);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.feature-badge {
    background-color: var(--rose-gold);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   PHILOSOPHY SECTIONS
   ======================================== */
.philosophy-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.beliefs-section {
    background-color: var(--ivory);
    padding: var(--spacing-xl) 0;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.belief-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.belief-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(58, 28, 90, 0.15);
    transform: translateY(-5px);
}

.belief-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.belief-card h3 {
    color: var(--deep-purple);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.belief-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.understanding-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: var(--spacing-xl) 0;
}

.understanding-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.understanding-box h2 {
    color: var(--deep-purple);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--midnight-blue);
    font-weight: 500;
    line-height: 1.6;
}

.core-values-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

.values-showcase {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.value-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    background-color: var(--ivory);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.value-item:hover {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.1), rgba(230, 201, 122, 0.1));
    transform: translateX(10px);
}

.value-check {
    font-size: 2.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.value-content h3 {
    color: var(--deep-purple);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.value-content p {
    color: var(--text-light);
    margin: 0;
}

.approach-section {
    background-color: var(--ivory);
    padding: var(--spacing-xl) 0;
}

.approach-box {
    max-width: 900px;
    margin: 0 auto;
}

.approach-box h2 {
    text-align: center;
    color: var(--deep-purple);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.approach-contrast {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.approach-column {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
}

.approach-column.dont {
    border: 3px solid var(--rose-gold);
}

.approach-column.do {
    border: 3px solid var(--gold);
}

.approach-column h3 {
    color: var(--deep-purple);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.contrast-text {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.approach-divider {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
}

.final-message-section {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--midnight-blue) 100%);
    padding: var(--spacing-xl) 0;
}

.final-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-message h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.final-message p {
    color: var(--ivory);
    font-size: 1.3rem;
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info h2 {
    color: var(--deep-purple);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--ivory);
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--deep-purple);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.contact-text p,
.contact-text a {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: var(--gold);
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

.trust-message {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--midnight-blue) 100%);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
}

.trust-message h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.trust-tagline {
    color: var(--ivory);
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Form */
.contact-form-container h2 {
    color: var(--deep-purple);
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    background-color: var(--ivory);
    padding: var(--spacing-lg);
    border-radius: 15px;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    color: var(--deep-purple);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-purple);
    box-shadow: 0 0 0 3px rgba(58, 28, 90, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--deep-purple);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.4);
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Map Section */
.map-section {
    background-color: var(--ivory);
    padding: var(--spacing-xl) 0;
}

.map-section h2 {
    text-align: center;
    color: var(--deep-purple);
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.map-placeholder {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 15px;
    text-align: center;
    border: 2px dashed var(--gold);
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--deep-purple);
    margin-bottom: var(--spacing-sm);
}

.map-note {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--deep-purple) 100%);
    color: var(--ivory);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: var(--ivory);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--ivory);
    transition: var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 77, 0.3);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--ivory);
    margin: 0;
}

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

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

.fade-in-delay {
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease 0.9s forwards;
    opacity: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .slider-btn {
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
    
    .slider-indicators {
        bottom: 2rem;
    }
    
    /* Page Header */
    .page-header {
        min-height: 280px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    /* Logo */
    .logo-img {
        height: 50px;
    }
    
    /* Founder Photo */
    .founder-photo {
        width: 200px;
        height: 200px;
    }
    
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--deep-purple) 0%, var(--midnight-blue) 100%);
        padding: var(--spacing-md);
        transition: var(--transition-normal);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: var(--spacing-md);
        text-align: center;
    }
    
    /* Grids */
    .help-grid,
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-contrast {
        grid-template-columns: 1fr;
    }
    
    .approach-divider {
        transform: rotate(90deg);
    }
    
    .founder-details {
        grid-template-columns: 1fr;
    }
    
    .style-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service Card */
    .service-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .slider-btn {
        padding: 0.5rem 0.75rem;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: 0.5rem;
    }
    
    .slider-next {
        right: 0.5rem;
    }
    
    .slider-indicators {
        bottom: 1.5rem;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    /* Page Header */
    .page-header {
        min-height: 220px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Logo */
    .logo-img {
        height: 45px;
    }
    
    /* Founder Photo */
    .founder-photo {
        width: 180px;
        height: 180px;
    }
    
    /* Spacing */
    section {
        padding: var(--spacing-md) 0;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}
