:root {
    --navy: #0f1729;
    --navy-light: #1a2332;
    --navy-lighter: #252e42;
    --blue: #4a90e2;
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --cyan: #00d4ff;
    --white: #ffffff;
    --gray-light: rgba(255, 255, 255, 0.7);
    --gray-lighter: rgba(255, 255, 255, 0.5);
    --gradient-brand: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    --gradient-bg: linear-gradient(135deg, #0f1729 0%, #1a2332 100%);
    --glow-blue: 0 0 20px rgba(74, 144, 226, 0.4);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: var(--navy);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 23, 41, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    animation: slideDown 0.8s ease-out;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

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

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 4rem 4rem;
    background: var(--gradient-bg);
    overflow: hidden;
}

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

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(74, 144, 226, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(74, 144, 226, 0.05) 87.5%, rgba(74, 144, 226, 0.05)),
        linear-gradient(150deg, rgba(74, 144, 226, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(74, 144, 226, 0.05) 87.5%, rgba(74, 144, 226, 0.05)),
        linear-gradient(30deg, rgba(74, 144, 226, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(74, 144, 226, 0.05) 87.5%, rgba(74, 144, 226, 0.05)),
        linear-gradient(150deg, rgba(74, 144, 226, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(74, 144, 226, 0.05) 87.5%, rgba(74, 144, 226, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    animation: patternMove 20s linear infinite;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--blue);
    top: 10%;
    right: 10%;
    animation: float1 15s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--purple);
    bottom: 20%;
    left: 10%;
    animation: float2 12s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--cyan);
    top: 50%;
    left: 50%;
    animation: float3 18s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-title span {
    display: block;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* CTA Buttons */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.cta-card {
    background: rgba(26, 35, 50, 0.6);
    border: 2px solid rgba(74, 144, 226, 0.2);
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-brand);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cta-card:hover::before {
    transform: translateY(0);
}

.cta-card:hover {
    border-color: var(--blue);
    transform: translateY(-8px);
    box-shadow: var(--glow-blue);
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    z-index: 1;
    position: relative;
    transition: all 0.4s ease;
    color: var(--blue);
}

.primary-cta .cta-icon {
    color: white;
}

.cta-card:hover .cta-icon {
    transform: scale(1.1);
    color: white;
}

.cta-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    z-index: 1;
    position: relative;
}

.cta-desc {
    font-size: 0.95rem;
    color: var(--gray-light);
    z-index: 1;
    position: relative;
}

.cta-card:hover .cta-desc {
    color: rgba(255, 255, 255, 0.9);
}

.primary-cta {
    background: var(--gradient-brand);
    border-color: var(--purple);
}

.primary-cta .cta-desc {
    color: rgba(255, 255, 255, 0.9);
}

.primary-cta::before {
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
}

/* Visual accent */
.accent-shape {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: var(--gradient-brand);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: pulse 8s ease-in-out infinite;
}

/* Decorative line */
.deco-line {
    width: 100px;
    height: 4px;
    background: var(--gradient-brand);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Contact Details Styling */
.info-card .contact-detail {
    margin-bottom: 1.5rem;
}

.info-card .contact-detail p {
    margin: 0.3rem 0;
}

.info-card .contact-detail strong {
    color: var(--blue);
    font-size: 0.95rem;
}

.info-card a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--white);
}

/* Section Styling */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Unified Advantage Section */
.unified-advantage {
    background: var(--navy-light);
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

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

.advantage-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--gray-light);
    text-align: center;
}

/* Solutions Section */
.solutions {
    background: var(--navy);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: rgba(26, 35, 50, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
}

.solution-icon {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.solution-proposition {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solution-details h4 {
    color: var(--blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.solution-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.solution-details ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--gray-light);
}

.solution-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--purple);
}

.solution-details p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--navy-light);
}

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

.service-card {
    background: rgba(15, 23, 41, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--purple-light);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* Methodology Section */
.methodology {
    background: var(--navy);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.methodology-step {
    background: rgba(26, 35, 50, 0.4);
    border-left: 4px solid var(--blue);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.methodology-step:hover {
    border-left-color: var(--purple);
    transform: translateX(10px);
    background: rgba(26, 35, 50, 0.6);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.methodology-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.methodology-step p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* Why Ya Rona Section */
.why-yarona {
    background: var(--navy-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(15, 23, 41, 0.6);
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.why-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.why-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--gray-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(26, 35, 50, 0.6);
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.submit-btn {
    background: var(--gradient-brand);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(26, 35, 50, 0.4);
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.info-card p {
    color: var(--gray-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
}

/* Video Showcase Section */
.video-showcase {
    padding: 6rem 0;
    background: var(--navy);
}

.main-video {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 144, 226, 0.2);
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    border-color: var(--blue);
    box-shadow: 0 30px 80px rgba(74, 144, 226, 0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--gray-light);
    font-style: italic;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.video-gallery-item {
    background: rgba(26, 35, 50, 0.4);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.video-gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-wrapper-small {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper-small iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-gallery-item:hover .video-wrapper-small iframe {
    pointer-events: auto;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 41, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    pointer-events: none;
}

.video-gallery-item:hover .play-overlay {
    opacity: 0;
}

.play-overlay i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.video-gallery-item h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    color: var(--white);
}

.video-gallery-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(26, 35, 50, 0.6);
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-lighter);
    font-size: 0.9rem;
}

/* Lifestyle Showcase Section */
.lifestyle-showcase {
    padding: 6rem 0;
    background: var(--navy-light);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.lifestyle-card {
    background: rgba(26, 35, 50, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.lifestyle-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.lifestyle-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.lifestyle-card:hover .image-placeholder {
    transform: scale(1.05);
}

.image-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.lifestyle-card:hover .image-placeholder i {
    transform: scale(1.1);
    opacity: 1;
}

/* When client adds real images, they can use this style */
.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lifestyle-card:hover .lifestyle-image img {
    transform: scale(1.05);
}

.lifestyle-content {
    padding: 2rem;
}

.lifestyle-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.lifestyle-content p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--navy-light);
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 4rem;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    color: var(--gray-lighter);
    font-size: 0.9rem;
}

.footer-bottom .credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-bottom .credit a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .credit a:hover {
    color: var(--purple);
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    }
    100% {
        background-position: 80px 140px, 80px 140px, 120px 210px, 120px 210px;
    }
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 20px) rotate(120deg);
    }
    66% {
        transform: translate(20px, -20px) rotate(240deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) translateX(50px) translateY(-30px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid,
    .services-grid,
    .methodology-grid,
    .why-grid,
    .lifestyle-grid,
    .testimonials-grid,
    .video-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 2rem 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .shape-1, .shape-2, .shape-3 {
        width: 200px;
        height: 200px;
    }
}
