/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #667eea;
    --secondary-purple: #764ba2;
    --pink: #f093fb;
    --teal: #20bfd1;
    --teal-dark: #1a9ca8;
    --dark-text: #e5e7eb;
    --gray-text: #9ca3af;
    --light-gray: #1f2937;
    --white: #ffffff;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-section: #111827;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--dark-bg);
}

/* Background with Gradient and Waves */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #581c87 100%);
}

.wave-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.wave-1 {
    width: 500px;
    height: 500px;
    background: var(--white);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.wave-2 {
    width: 400px;
    height: 400px;
    background: var(--pink);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.wave-3 {
    width: 600px;
    height: 600px;
    background: var(--teal);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link:last-child {
    background: rgba(32, 191, 209, 0.9);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    color: var(--white);
}

.nav-link:last-child:hover {
    background: var(--teal-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: var(--white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover-photo-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.cover-photo {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cover-photo:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, #1a9ca8 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(32, 191, 209, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 191, 209, 0.6);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.white-section {
    background: var(--dark-section);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-text);
}

.tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-top: 2rem;
}

/* About Section */
.about-content {
    max-width: 800px;
}

/* Owner Section */
#owner .owner-wrapper {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.5rem;
    align-items: center;
}

#owner .owner-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

#owner .owner-name {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

.goal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 50%;
    color: var(--white);
}

.goal-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.goal-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--dark-card);
    color: var(--white);
}

.form-input:focus {
    outline: none;
    background: var(--dark-card);
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(32, 191, 209, 0.1);
}

.form-input::placeholder {
    color: var(--gray-text);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(32, 191, 209, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Responsive Design */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Desktop (1024px to 1399px) */
@media (max-width: 1399px) and (min-width: 1024px) {
    .hero .container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablet Landscape and Small Desktop (968px to 1023px) */
@media (max-width: 1023px) and (min-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cover-photo-placeholder,
    .cover-photo {
        height: 350px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
}

/* Tablet Portrait (768px to 967px) */
@media (max-width: 967px) and (min-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cover-photo-placeholder,
    .cover-photo {
        max-width: 500px;
        height: 300px;
        margin: 0 auto;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.95rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .goals-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
    }
    
    .wave-1 {
        width: 400px;
        height: 400px;
    }
    
    .wave-2 {
        width: 300px;
        height: 300px;
    }
    
    .wave-3 {
        width: 500px;
        height: 500px;
    }
}

/* Mobile Landscape and Small Tablet (640px to 767px) */
@media (max-width: 767px) and (min-width: 640px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
        padding: 3rem 1.5rem;
        gap: 1.25rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-link:last-child {
        margin-top: 0.5rem;
    }
    
    .hero {
        padding: 120px 0 50px;
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .cover-photo-placeholder,
    .cover-photo {
        max-width: 100%;
        height: 280px;
    }
    
    .cover-photo-placeholder {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .goal-card {
        padding: 2rem;
    }
    
    .goal-icon {
        width: 90px;
        height: 90px;
        line-height: 90px;
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100%;
        min-width: 100%;
    }
    
    .wave-1 {
        width: 300px;
        height: 300px;
    }
    
    .wave-2 {
        width: 250px;
        height: 250px;
    }
    
    .wave-3 {
        width: 400px;
        height: 400px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    #owner .owner-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    #owner .owner-photo {
        margin: 0 auto;
        width: 130px;
        height: 130px;
    }
}

/* Mobile Portrait (480px to 639px) */
@media (max-width: 639px) and (min-width: 481px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-placeholder {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
        padding: 3rem 1.5rem;
        gap: 1.25rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
    
    .nav-link:last-child {
        margin-top: 0.5rem;
        padding: 0.6rem 1.25rem;
    }
    
    .hero {
        padding: 110px 0 40px;
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.7;
    }
    
    .cover-photo-placeholder,
    .cover-photo {
        max-width: 100%;
        height: 250px;
        border-radius: 15px;
    }
    
    .cover-photo-placeholder {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .section-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .goal-card {
        padding: 1.75rem 1.5rem;
    }
    
    .goal-card h3 {
        font-size: 1.25rem;
    }
    
    .goal-card p {
        font-size: 0.95rem;
    }
    
    .goal-icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .contact-form {
        max-width: 100%;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .form-input {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .footer-newsletter h4 {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-input {
        width: 100%;
        min-width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .newsletter-form .btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .wave-1 {
        width: 250px;
        height: 250px;
    }
    
    .wave-2 {
        width: 200px;
        height: 200px;
    }
    
    .wave-3 {
        width: 350px;
        height: 350px;
    }
    
    .tagline {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    #owner .owner-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    #owner .owner-photo {
        margin: 0 auto;
        width: 120px;
        height: 120px;
    }
}

/* Small Mobile (320px to 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.875rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo-placeholder {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
        padding: 3rem 1.5rem;
        gap: 1.25rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
    
    .nav-link:last-child {
        margin-top: 0.5rem;
        padding: 0.55rem 1.15rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 100px 0 30px;
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.75rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .cover-photo-placeholder,
    .cover-photo {
        max-width: 100%;
        height: 220px;
        border-radius: 12px;
    }
    
    .cover-photo-placeholder {
        font-size: 0.85rem;
        padding: 1rem;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .section-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .section-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.625rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.25rem;
    }
    
    .goal-card {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
    }
    
    .goal-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .goal-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .goal-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.375rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .contact-form {
        max-width: 100%;
        gap: 1rem;
        margin-top: 1.25rem;
    }
    
    .form-input {
        padding: 0.8rem 1.15rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .btn {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
    }
    
    .footer-newsletter h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.625rem;
    }
    
    .newsletter-input {
        width: 100%;
        min-width: 100%;
        padding: 0.65rem 0.9rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .newsletter-form .btn {
        width: 100%;
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
    
    .wave-1 {
        width: 200px;
        height: 200px;
        top: -150px;
        right: -80px;
    }
    
    .wave-2 {
        width: 150px;
        height: 150px;
        bottom: -100px;
        left: -80px;
    }
    
    .wave-3 {
        width: 280px;
        height: 280px;
    }
    
    .tagline {
        font-size: 0.95rem;
        margin-top: 1.25rem;
    }
    
    .about-content {
        max-width: 100%;
    }
    #owner .owner-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    #owner .owner-photo {
        margin: 0 auto;
        width: 110px;
        height: 110px;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .section-text {
        font-size: 0.85rem;
    }
    
    .goal-card {
        padding: 1.25rem 1rem;
    }
    
    .goal-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}
