/* ==========================================================================
   Monica Sovereign - Premium Sober Living Theme Styling
   ========================================================================== */

/* 1. Core Variables & Design System */
:root {
    --primary: #074861;          /* Dark Teal (Extracted from logo) */
    --primary-light: #0a5d7c;
    --primary-dark: #032431;
    --secondary: #0d5f80;        /* Ocean Blue Accent */
    --accent: #97c915;           /* Lime Green (Extracted from logo) */
    --accent-dark: #7ea710;      /* Darker Lime hover */
    --light-bg: #f5f9f3;         /* Soft Green background */
    --light-bg-hover: #e8f2e5;
    --white: #ffffff;
    --dark-bg: #031c27;          /* Deep Slate for Footer/Dark mode aspects */
    --text-main: #2b3a42;        /* Slate text */
    --text-muted: #60737d;
    --text-light: #ecf0f1;
    --danger: #d9534f;
    --success: #97c915;
    
    /* Font Pairing */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout Elements */
    --header-height: 90px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    
    /* Shadows & Glows */
    --shadow-sm: 0 4px 12px rgba(0, 48, 64, 0.05);
    --shadow-md: 0 12px 30px rgba(0, 48, 64, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 48, 64, 0.12);
    --accent-glow: 0 0 20px rgba(151, 201, 21, 0.4);
    
    /* Glassmorphism Defaults */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

/* 2. Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
}

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

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

/* 3. Utility Classes */
.text-center { text-align: center; }
.text-danger { color: var(--danger) !important; }
.text-success { color: var(--success) !important; }
.font-light { font-weight: 300; }
.highlight-text { color: var(--accent); position: relative; display: inline-block; }

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 20px auto;
    border-radius: 2px;
}
.section-divider.align-left {
    margin: 20px 0;
}

/* 4. Component Styles (Buttons, Cards, Inputs) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    gap: 8px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

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

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

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.2);
}
.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}

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

.btn-block {
    display: flex;
    width: 100%;
}

/* 5. Top Bar & Sticky Main Header */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info a:hover {
    color: var(--accent);
}

.main-header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 48, 64, 0.05);
}

.main-header.scrolled {
    height: 75px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link.active:after, .nav-link:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* 6. Section Templates (Hero, Pillars, FAQ, Contact) */

/* Tag Style */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--primary-dark);
    padding: 100px 0 120px;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 168, 150, 0.15) 0%, rgba(0, 48, 64, 0.4) 60%, rgba(0, 31, 43, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

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

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 540px;
}

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

/* Glass Frame for Hero Image */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glass-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-img {
    width: 100%;
    height: 440px;
    object-fit: contain;
    background-color: rgba(3, 36, 49, 0.6);
    border-radius: calc(var(--border-radius-lg) - 12px);
    display: block;
}

.experience-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--primary);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    line-height: 1.2;
}

/* Stats Section */
.stats-section {
    background-color: var(--light-bg);
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 48, 64, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

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

.stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Transformation Journey Section */
.transformation-section {
    padding: 100px 0;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 24px;
    margin-top: 50px;
}

.transform-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 48, 64, 0.05);
}

.transform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.transform-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: flex;
}

.transform-img {
    flex: 1 1 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--light-bg-hover);
    transition: var(--transition-smooth);
}

.transform-card:hover .transform-img {
    transform: scale(1.04);
}

.overlay-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.overlay-tag.danger { background-color: var(--danger); }
.overlay-tag.success { background-color: var(--success); }

.transform-body {
    padding: 32px;
}

.transform-body h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.transform-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.check-list i {
    font-size: 1.1rem;
}

.transform-arrow {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
}

.mobile-arrow { display: none; }

/* Pillars Section */
.pillars-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

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

.pillar-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 48, 64, 0.05);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--light-bg-hover);
    transition: var(--transition-smooth);
}

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

.pillar-content {
    padding: 32px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: absolute;
    top: -30px;
    left: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--accent);
    transform: rotate(360deg);
}

.pillar-content h3 {
    margin-top: 16px;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.pillar-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--light-bg-hover);
    transition: var(--transition-smooth);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 48, 64, 0.95) 0%, rgba(0, 48, 64, 0.4) 60%, transparent 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-info h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.gallery-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

/* Grid Sizes */
.gallery-item.size-wide {
    grid-column: span 2;
}

.gallery-item.size-tall {
    grid-row: span 2;
    height: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.faq-left p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.faq-help-box {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(0, 48, 64, 0.05);
}

.help-icon {
    font-size: 2.2rem;
    color: var(--accent);
}

.faq-help-box h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.faq-help-box p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.help-link {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
}
.help-link:hover {
    color: var(--accent);
}

/* Accordion Accordion */
.faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 48, 64, 0.06);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 168, 150, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle-icon {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonial Quote Section */
.quote-section {
    position: relative;
    background-color: var(--primary-dark);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.quote-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 80, 112, 0.15) 0%, rgba(0, 31, 43, 0.95) 100%);
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0.7;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.35;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

/* Admissions / Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: stretch;
}

.contact-form-wrapper {
    background-color: var(--white);
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 36px;
}

/* Admissions Form */
.admissions-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    position: relative;
    width: 100%;
}

.form-control {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 48, 64, 0.15);
    background-color: var(--white);
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 168, 150, 0.1);
}

textarea.form-control {
    resize: none;
}

/* Floating Label Animation */
.floating-group {
    position: relative;
}

.floating-label {
    position: absolute;
    top: 15px;
    left: 18px;
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.25s ease all;
}

.form-control:focus ~ .floating-label,
.form-control:not(:placeholder-shown) ~ .floating-label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background-color: var(--white);
    padding: 0 6px;
    border-radius: 4px;
}

/* Select Box custom style */
.select-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23647a84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Checkbox Styling */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    user-select: none;
    color: var(--text-muted);
    font-weight: 500;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--white);
    border: 1.5px solid rgba(0, 48, 64, 0.2);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent);
    border-color: var(--accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-message {
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(46, 196, 182, 0.1);
    color: var(--success);
    border: 1px solid rgba(46, 196, 182, 0.2);
}

.form-message.error {
    display: block;
    background-color: rgba(217, 83, 79, 0.1);
    color: var(--danger);
    border: 1px solid rgba(217, 83, 79, 0.2);
}

/* Info Column */
.contact-info-wrapper {
    position: relative;
    background-image: url('two-men-home-posing-with-telephone.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    color: var(--white);
}

.info-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 48, 64, 0.98) 0%, rgba(0, 80, 112, 0.9) 100%);
    z-index: 1;
}

.info-card-content {
    position: relative;
    z-index: 2;
    padding: 48px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.info-card-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.info-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-list li {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.info-val {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
}

a.info-val:hover {
    color: var(--accent);
}

.hours-badge {
    margin-top: 40px;
    background-color: rgba(0, 168, 150, 0.15);
    border: 1px solid rgba(0, 168, 150, 0.25);
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
}

.hours-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-dot 2s infinite;
}

.hours-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 150, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 168, 150, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 150, 0); }
}

/* 7. Footer Styles */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.contact-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}
.footer-cta-link:hover {
    color: var(--white);
}

.small-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

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

/* 8. Responsive Design & Media Queries */

/* Tablet & Smaller Screens */
@media (max-width: 992px) {
    .section-title { font-size: 2.3rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title { font-size: 3rem; }
    
    .hero-description { margin: 0 auto 30px; }
    
    .hero-actions { justify-content: center; }
    
    .stats-grid { gap: 16px; }
    .stat-number { font-size: 2.2rem; }
    
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .desktop-arrow { display: none; }
    .mobile-arrow { display: block; margin: 10px 0; }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item.size-wide { grid-column: span 1; }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile & Nav Toggle Screens */
@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(0, 48, 64, 0.05);
        box-shadow: 0 10px 20px rgba(0, 48, 64, 0.05);
    }
    
    .main-header.scrolled .nav-menu {
        top: 75px;
        height: calc(100vh - 75px);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .nav-menu .btn {
        width: 100%;
        margin-top: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .experience-card {
        bottom: -10px;
        left: 5%;
        right: 5%;
        width: 90%;
        justify-content: center;
    }
    
    .hero-img { height: 350px; }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .section-title { font-size: 1.85rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .gallery-item.size-tall { grid-row: span 1; }
    
    .info-card-content { padding: 24px; }
}

/* 9. Scroll Animation system reveals */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: var(--transition-smooth);
    transition-duration: 0.8s;
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Animation Directions */
.scroll-reveal[data-animation="fade-in"] {
    transform: translateY(0);
}

.scroll-reveal[data-animation="fade-in-left"] {
    transform: translateX(-35px);
}

.scroll-reveal[data-animation="fade-in-left"].reveal-active {
    transform: translateX(0);
}

.scroll-reveal[data-animation="fade-in-right"] {
    transform: translateX(35px);
}

.scroll-reveal[data-animation="fade-in-right"].reveal-active {
    transform: translateX(0);
}

.scroll-reveal[data-animation="zoom-in"] {
    transform: scale(0.92);
}

.scroll-reveal[data-animation="zoom-in"].reveal-active {
    transform: scale(1);
}
