/* Strelitzia Website Styles */

/* CSS Variables - Brand Colors */
:root {
    --coral: #FF6B4A;
    --blue: #4A90E2;
    --green: #2D5F3F;
    --cream: #FAF7F2;
    --charcoal: #2C2C2C;
    --gray: #6B6B6B;
    --white: #FFFFFF;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
}

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

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

h1 {
    font-size: 48px;
    color: var(--coral);
    margin-bottom: 1rem;
}

h2 {
    font-size: 36px;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 24px;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Logo Styles */
.logo-link {
    display: block;
    line-height: 0;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

.logo-image:hover {
    opacity: 0.85;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--coral);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--coral);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    transition: 0.3s;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.cta-button:hover {
    background: #ff5535;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, #fff5ec 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-features {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-features p {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.hero-features p:last-child {
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--coral);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 0; }
    30% { opacity: 1; }
    60% { opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

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

/* Sections */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background: var(--white);
}

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

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.column h2 {
    margin-bottom: 1.5rem;
}

.column p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.accent-box {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(45, 95, 63, 0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    border-left: 4px solid var(--coral);
}

.quote-block {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--coral);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

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

.footer-section h4 {
    color: var(--coral);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--cream);
    line-height: 1.8;
}

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

.footer-links a {
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-tagline {
    font-style: italic;
    margin-top: 1rem;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.footer-disclaimer h4 {
    color: var(--coral);
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, #fff5ec 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header .lead {
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--cream);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--coral);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-card ul li:before {
    content: "✓";
    color: var(--coral);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Approach Steps */
.approach-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--coral);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    min-width: 60px;
    text-align: center;
}

.step-content h3 {
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
    color: var(--gray);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-step h3 {
    color: var(--coral);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--cream);
    text-align: center;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--coral);
    box-shadow: 0 10px 40px rgba(255, 107, 74, 0.2);
    transform: scale(1.05);
}

.pricing-card h3 {
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--coral);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li:before {
    content: "✓";
    color: var(--coral);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--cream);
}

.info-card h3 {
    color: var(--coral);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    margin-top: 1rem;
}

.info-card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.info-card ul li:before {
    content: "•";
    color: var(--blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--cream);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    background: var(--coral);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

button[type="submit"]:hover {
    background: #ff5535;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}

/* Contact Info Box */
.contact-info-box {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(255, 107, 74, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info-box h3 {
    color: var(--coral);
    margin-bottom: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

/* Education Resources */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.resource-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--cream);
    transition: all 0.3s;
}

.resource-card:hover {
    border-color: var(--blue);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.resource-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
}

.resource-card ul {
    list-style: none;
}

.resource-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.resource-card ul li:before {
    content: "→";
    color: var(--coral);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, var(--blue) 0%, var(--coral) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.newsletter-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-box p {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
}

.newsletter-form button {
    background: var(--white);
    color: var(--coral);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    
    .hero h1 { font-size: 48px; }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        display: none;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .navbar .cta-button {
        display: none;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    
    .hero h1 { font-size: 40px; }
    .hero-subtitle { font-size: 1.2rem; }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

