/* CSS Variables for Brand Colors */
:root {
    --teal-green: #3E8A89;
    --soft-peach: #F7C8B8;
    --muted-gold: #D6A656;
    --light-sage: #E9F0ED;
    --warm-white: #FAF9F7;
    --charcoal-grey: #4B4B4B;
    
    /* Additional colors for better contrast */
    --dark-teal: #2D6B6A;
    --light-peach: #F9D4C4;
    --soft-gold: #E8C47A;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--charcoal-grey);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--teal-green);
}

h3 {
    font-size: 1.8rem;
    color: var(--dark-teal);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--teal-green);
    margin: 0;
    font-size: 1.8rem;
}

.tagline {
    font-size: 0.9rem;
    color: var(--charcoal-grey);
    font-style: italic;
}

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

.nav-link {
    text-decoration: none;
    color: var(--charcoal-grey);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--teal-green);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--teal-green);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--light-sage) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--charcoal-grey);
}

.highlight {
    color: var(--teal-green);
}

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

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--charcoal-grey);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.profile-image-container {
    position: relative;
    width: 260px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: var(--transition);
}

.profile-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(62, 138, 137, 0.1), rgba(247, 200, 184, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--soft-peach);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--teal-green);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--muted-gold);
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--teal-green);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(62, 138, 137, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--teal-green);
    border: 2px solid var(--teal-green);
}

.btn-secondary:hover {
    background: var(--teal-green);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal-grey);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-sage);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--teal-green);
    font-size: 1.5rem;
}

/* Services Section */
.services {
    background: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 4px solid var(--teal-green);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--teal-green);
    font-size: 2rem;
}

.how-i-work {
    background: var(--light-sage);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.work-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--teal-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--teal-green);
    margin-bottom: 0.5rem;
}

/* Enhanced How I Work Section */
.credentials-intro {
    background: var(--light-sage);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--teal-green);
}

.credentials-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.approach-methodology,
.session-details,
.coaching-clarification {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.approach-methodology h4,
.session-details h4,
.coaching-clarification h4 {
    color: var(--teal-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefits-grid,
.coaching-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.benefit-item,
.coaching-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--warm-white);
    border-radius: 10px;
    border-left: 3px solid var(--soft-peach);
    transition: var(--transition);
}

.benefit-item:hover,
.coaching-benefit:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i,
.coaching-benefit i {
    color: var(--teal-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item span,
.coaching-benefit span {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--charcoal-grey);
}

.journey-conclusion {
    background: var(--soft-peach);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.conclusion-text {
    font-size: 1.2rem;
    color: var(--charcoal-grey);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.journey-conclusion {
    background: var(--light-sage);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--teal-green);
}

.conclusion-highlight {
    font-size: 1.3rem;
    color: var(--teal-green);
    font-weight: 600;
    text-align: center;
    margin: 1.5rem 0;
    font-style: italic;
}

.journey-cta {
    background: var(--soft-peach);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
}

.journey-cta p {
    font-size: 1.1rem;
    color: var(--charcoal-grey);
    font-weight: 500;
    margin: 0;
}

/* Call to Action styling */
.call-to-action {
    background: var(--soft-peach);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--charcoal-grey);
    font-weight: 500;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: var(--warm-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-green), var(--soft-peach));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    color: var(--soft-peach);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal-grey);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
}

.testimonial-content blockquote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--teal-green);
    border-radius: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-sage);
}

.author-info h4 {
    color: var(--teal-green);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-role {
    color: var(--charcoal-grey);
    font-size: 0.9rem;
    font-style: italic;
}

/* Journey Section */
.journey {
    background: var(--warm-white);
}

.journey-content {
    max-width: 800px;
    margin: 0 auto;
}

.journey-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.journey-highlight {
    background: var(--light-sage);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--teal-green);
}

.journey-quote {
    margin: 3rem 0;
    text-align: center;
}

.journey-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--teal-green);
    position: relative;
    padding: 2rem;
    background: var(--light-sage);
    border-radius: 15px;
}

.journey-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--soft-peach);
    position: absolute;
    top: -10px;
    left: 20px;
}

/* Contact Section */
.contact {
    background: var(--light-sage);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--teal-green);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--teal-green);
    font-size: 1.5rem;
    width: 30px;
}

.contact-item h4 {
    margin: 0;
    color: var(--teal-green);
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal-grey);
}

/* Contact Email */
.contact-email {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    visibility: visible;
    opacity: 1;
}

.email-card {
    text-align: center;
    padding: 2rem;
}

.email-icon {
    width: 80px;
    height: 80px;
    background: var(--soft-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--teal-green);
    font-size: 2rem;
}

.email-content h3 {
    color: var(--teal-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.email-content p {
    color: var(--charcoal-grey);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.email-address {
    margin: 2rem 0;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--teal-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(62, 138, 137, 0.3);
}

.email-link:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 138, 137, 0.4);
}

.email-link i {
    font-size: 1.2rem;
}

.contact-actions {
    margin-top: 1rem;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.35);
}

.whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.email-note {
    color: var(--charcoal-grey);
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-sage);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
    display: block;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-green);
    box-shadow: 0 0 0 3px rgba(62, 138, 137, 0.1);
}

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

/* Footer */
.footer {
    background: var(--charcoal-grey);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--soft-peach);
    margin-bottom: 0.5rem;
}

.footer-brand .tagline {
    color: var(--light-sage);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: var(--soft-peach);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-sage);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact h4 {
    color: var(--soft-peach);
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(233, 240, 237, 0.2);
}

.social-links h4 {
    color: var(--soft-peach);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light-sage);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.social-link:hover {
    color: var(--soft-peach);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.2rem;
    color: #E4405F;
}

.instagram-link {
    color: var(--teal-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.instagram-link:hover {
    color: var(--soft-peach);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(233, 240, 237, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: var(--light-sage);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--warm-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0;
    }
    
    .hero-text {
        order: 2;
        padding: 0 1rem;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 2rem;
        height: auto;
        min-height: 300px;
    }
    
    .profile-image-container {
        width: 200px;
        height: 250px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        height: auto;
        min-height: 250px;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .profile-image-container {
        width: 160px;
        height: 200px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-email {
        padding: 2rem 1.5rem;
    }
    
    .email-card {
        padding: 1.5rem;
    }
    
    .email-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .floating-shapes {
        display: none; /* Hide floating shapes on very small screens */
    }
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
    .hero {
        padding: 80px 0 30px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .profile-image-container {
        width: 140px;
        height: 180px;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation for form submission */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--teal-green);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success message styling */
.success-message {
    background: var(--light-sage);
    color: var(--teal-green);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Error message styling */
.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}
