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

:root {
    --primary-gold: #FFD700;
    --primary-yellow: #FFC107;
    --black: #000000;
    --white: #FFFFFF;
    --gray-dark: #2C2C2C;
    --gray-medium: #666666;
    --gray-light: #F5F5F5;
    --overlay-beige: rgba(250, 248, 245, 0.95);
    --font-serif: 'Libre Baskerville', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ===== Header ===== */
.header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo-container:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.logo {
    height: 35px;
    width: auto;
    display: block;
}

/* ===== Hero Text Panel ===== */
.hero-text-panel {
    position: relative;
    max-width: 650px;
    margin: auto 0 auto 40px;
    padding: 60px 50px;
    background: var(--overlay-beige);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            var(--gray-dark) 35px,
            var(--gray-dark) 36px
        );
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 30px;
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 40px;
    font-weight: 400;
}

/* ===== CTA Button ===== */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-gold);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.cta-button.secondary {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: var(--gray-dark);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ===== AI Bot Section ===== */
.ai-bot-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    padding: 30px 20px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-gold);
}

.feature-card h3 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ===== Why Choose Us Section ===== */
.why-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.why-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

/* ===== Stats Grid ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.4;
}

/* ===== Benefits List ===== */
.benefits-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 20px;
    font-weight: bold;
}

.benefit-text {
    font-size: 1.125rem;
    color: var(--white);
}

.link-button {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.link-button:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

/* ===== Media Partners Section ===== */
.media-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.media-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-medium);
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 6px;
    width: fit-content;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-text-panel {
        max-width: 550px;
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }
    
    .header {
        padding: 15px;
    }
    
    .logo-container {
        padding: 8px 15px;
    }
    
    .logo {
        height: 28px;
    }
    
    .hero-text-panel {
        margin: auto 15px 40px;
        padding: 35px 25px;
        max-width: 100%;
        border-radius: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-icon {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .ai-bot-section,
    .why-section,
    .media-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 18px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px;
    }
    
    .logo-container {
        padding: 6px 12px;
    }
    
    .logo {
        height: 24px;
    }
    
    .hero-text-panel {
        margin: auto 10px 30px;
        padding: 25px 20px;
    }
    
    .hero-title {
        font-size: 1.625rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
        letter-spacing: 1px;
    }
    
    .section-icon {
        font-size: 2.25rem;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .ai-bot-section,
    .why-section,
    .media-section {
        padding: 40px 0;
    }
    
    .features-grid {
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 20px;
        min-height: 100px;
    }
}

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

.hero-text-panel {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== Accessibility ===== */
.cta-button:focus,
.link-button:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
}

/* ===== Print Styles ===== */
@media print {
    .hero-background,
    .geometric-pattern {
        display: none;
    }
    
    .hero-text-panel {
        background: var(--white);
        box-shadow: none;
    }
}
