/* ==========================================================================
   EverStone Properties & Development - Custom Stylesheet (Premium Editorial Theme)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Hind+Siliguri:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Warm Editorial / Clean Luxury */
    --bg-primary: #ffffff;
    --bg-secondary: #fbf9f4;    /* Warm alabaster cream */
    --bg-tertiary: #f1f5f9;     /* Light slate grey */
    --bg-navy: #0f2942;         /* Brand Corporate Navy */
    --bg-navy-dark: #071524;    /* Deep Footer Navy */
    
    --primary: #c5a059;         /* Brand Warm Gold */
    --primary-light: #dfbe7b;
    --primary-dark: #a6813b;
    --primary-gold-opaque: rgba(197, 160, 89, 0.1);
    
    --text-primary: #0f172a;    /* Slate-900 */
    --text-secondary: #334155;  /* Slate-700 */
    --text-muted: #64748b;      /* Slate-500 */
    --text-white: #ffffff;
    --text-gold: #c5a059;
    
    --border-light: rgba(15, 41, 66, 0.08);
    --border-gold: rgba(197, 160, 89, 0.25);
    
    --shadow-sm: 0 2px 4px rgba(15, 41, 66, 0.04);
    --shadow-md: 0 10px 30px rgba(15, 41, 66, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 41, 66, 0.1);
    --shadow-gold: 0 10px 35px rgba(197, 160, 89, 0.15);
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', 'Hind Siliguri', sans-serif;
    line-height: 1.65;
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', 'Hind Siliguri', serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.2px;
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

/* Custom Cursor (Sophisticated gold ring) */
.custom-cursor {
    width: 24px;
    height: 24px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    display: none;
}

.custom-cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    display: none;
}

@media (min-width: 1024px) {
    .custom-cursor, .custom-cursor-dot {
        display: block;
    }
}

.hover-active {
    width: 44px;
    height: 44px;
    background-color: rgba(197, 160, 89, 0.08);
    border-color: var(--primary-dark);
}

/* Reusable Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 1.25rem;
    color: var(--bg-navy);
    font-weight: 800;
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Editorial Card style */
.editorial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.editorial-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Button style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--bg-navy);
    color: var(--text-white);
    border: 1px solid var(--bg-navy);
    box-shadow: 0 4px 12px rgba(15, 41, 66, 0.15);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(166, 129, 59, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-navy);
    border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.25rem 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 41, 66, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

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

.logo-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--bg-navy);
    letter-spacing: 0.5px;
}

.logo-title span {
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    transition: var(--transition-fast);
}

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

.nav-link:hover {
    color: var(--bg-navy);
}

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Toggle Button */
.lang-toggle {
    display: flex;
    background: var(--bg-tertiary);
    border: 1px solid rgba(15, 41, 66, 0.06);
    border-radius: 4px;
    padding: 3px;
    cursor: pointer;
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn.active {
    color: var(--text-white);
    background: var(--bg-navy);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--bg-navy);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section (Light Overlay on Dhaka Skyline)
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 45%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0) 100%), url('../images/hero-bg.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* For dark image overlays to retain text visibility without feeling overly artificial */
.hero-content {
    text-align: left;
    width: 100%;
    max-width: 700px;
    margin-right: auto;
}

.hero-subtitle-container {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle-container svg {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--bg-navy);
    animation: fadeInUp 1.2s ease-out;
}

.hero-title span {
    color: var(--primary-dark);
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    animation: fadeInUp 1.4s ease-out;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    animation: fadeInUp 1.6s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--primary-dark);
}

.mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-indicator:hover .mouse {
    border-color: var(--primary-dark);
}

.wheel {
    width: 3px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 1px;
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator:hover .wheel {
    background-color: var(--primary-dark);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background-color: var(--bg-primary);
}

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

.about-img-container {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.about-img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-frame:hover img {
    transform: scale(1.03);
}

.about-img-overlay {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 170px;
    height: 170px;
    background: #ffffff;
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.about-experience-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 0.25rem;
    font-family: 'Cinzel', sans-serif;
}

.about-experience-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-navy);
    font-weight: 700;
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--bg-navy);
    line-height: 1.25;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feat-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.about-feat-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================================================
   Dhaka Icon City Section (Flagship Project in Light Sand Theme)
   ========================================================================== */
.project {
    background-color: var(--bg-secondary);
}

.project-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.project-header-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-status {
    padding: 0.35rem 1rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: rgba(76, 175, 80, 0.08);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.25);
    letter-spacing: 0.5px;
}

.project-title {
    font-size: 2.6rem;
    color: var(--bg-navy);
    font-weight: 800;
    line-height: 1.15;
}

.project-slogan {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--bg-navy);
    color: #ffffff;
    border-color: var(--bg-navy);
}

.feature-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--bg-navy);
}

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

/* Right Panel: Project Visual Showcase */
.project-visuals {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-main-image {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
    height: 400px;
}

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

.project-main-image:hover img {
    transform: scale(1.02);
}

.project-badge-overlay {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 0.4rem 1rem;
    box-shadow: var(--shadow-sm);
}

.project-badge-overlay span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Elements Grid (White/Gold Accent) */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem 0.5rem;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.trust-badge-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-badge-item svg {
    color: var(--primary-dark);
    width: 22px;
    height: 22px;
    margin-bottom: 0.5rem;
}

.trust-badge-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg-navy);
}

/* ==========================================================================
   Founder Director Opportunity Section (High Contrast Deep Navy Block)
   ========================================================================== */
.opportunity {
    background-color: var(--bg-primary);
}

.opportunity-card {
    background: var(--bg-navy);
    border-radius: 12px;
    padding: 4.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.opp-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.opp-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    color: #ffffff;
}

.opp-content p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

.opp-highlights {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.opp-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #e2e8f0;
}

.opp-highlights li svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.opp-highlights li span {
    font-weight: 700;
    color: #ffffff;
}

.opportunity .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-navy-dark);
}

.opportunity .btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 4px 15px rgba(223, 190, 123, 0.3);
}

/* Steps Grid */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.step-item:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--primary-light);
    font-family: 'Cinzel', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-item:hover .step-number {
    background-color: var(--primary);
    color: var(--bg-navy);
    border-color: var(--primary);
}

.step-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.step-info p {
    font-size: 0.9rem;
    margin: 0;
    color: #94a3b8;
}

/* ==========================================================================
   Contact / Lead Form Section
   ========================================================================== */
.contact {
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.contact-method-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-details h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--bg-navy);
}

.contact-method-details p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.contact-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--bg-navy);
    text-decoration: underline;
}

/* Ad Banner element styled like a local flyer section */
.contact-cta-ad {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-cta-ad img {
    width: 76px;
    height: 76px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--border-light);
}

.contact-cta-ad h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--bg-navy);
    font-weight: 700;
}

.contact-cta-ad p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-panel {
    padding: 3rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg-navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.15rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

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

/* Form Feedback styles */
.form-feedback {
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: none;
}

.form-feedback.success {
    background-color: rgba(76, 175, 80, 0.08);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-feedback.error {
    background-color: rgba(211, 47, 47, 0.08);
    color: #c62828;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--bg-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 5.5rem 0 2.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 340px;
    color: #94a3b8;
}

.footer-brand .logo-title {
    color: #ffffff;
}

.footer-brand .logo-subtitle {
    color: #64748b;
}

.footer-shield-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-shield-icon {
    color: var(--primary);
}

.footer-shield-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

.footer-links h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links-list a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-legal a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(6px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================================================
   Responsive / Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        background-position: 70% center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-grid, .project-layout, .opp-grid, .contact-grid {
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Navbar Drawer styling */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-light);
        box-shadow: 0 10px 30px rgba(15, 41, 66, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Layouts stack to 1 column */
    .about-grid, .project-layout, .opp-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%), url('../images/hero-bg.png');
        background-position: center;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-img-frame img {
        height: 340px;
    }
    
    .about-img-overlay {
        width: 130px;
        height: 130px;
        padding: 1rem;
        bottom: -15px;
        right: -15px;
    }
    
    .about-experience-num {
        font-size: 1.75rem;
    }
    
    .project-visuals {
        position: relative;
        top: 0;
    }
    
    .project-main-image {
        height: 320px;
    }
    
    .opportunity-card {
        padding: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-desc {
        font-size: 1.05rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}
