:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #1e293b;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.logo:hover {
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.cta-btn {
    padding: 0.75rem 1.75rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    animation: fadeInUp 1s ease-out 1s backwards;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

.hero-decoration {
    position: relative;
    height: 500px;
    animation: fadeIn 1.5s ease-out 0.5s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.card-1 {
    width: 280px;
    height: 200px;
    top: 50px;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    width: 220px;
    height: 180px;
    top: 200px;
    right: 50px;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    width: 250px;
    height: 150px;
    bottom: 100px;
    left: 80px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(20px); opacity: 1; }
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--darker), var(--dark));
}

.section-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: var(--shadow-lg);
}

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

.stat-number::after {
    content: '+';
}

.stat-label {
    color: var(--gray-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--gray-light);
    line-height: 1.8;
}

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

.service-card {
    padding: 3rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.service-tagline {
    color: var(--primary);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-description {
    color: var(--gray-light);
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--dark), var(--darker));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: 
        linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%231e293b" width="400" height="300"/><text x="50%" y="50%" fill="%2364748b" font-family="Arial" font-size="20" text-anchor="middle" dominant-baseline="middle">About Dymz</text></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-lg);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.about-highlight {
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    margin-bottom: 2.5rem;
}

.about-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.secondary-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.secondary-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--darker);
    position: relative;
}

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

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

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

.info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-light);
}

.contact-form-wrapper {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 25px;
    padding: 3rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    color: var(--light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.7);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 4rem 0 2rem;
}

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

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

.footer-text {
    color: var(--gray-light);
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-legal {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .cta-btn {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Page Header */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    position: relative;
    z-index: 1;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    background: var(--dark);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-text p {
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-image {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: 
        linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.05)),
        var(--secondary);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered {
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--gray-light);
    line-height: 1.9;
    margin-top: 1.5rem;
}

.centered-text {
    max-width: 800px;
    margin: 1.5rem auto;
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--darker);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mv-card {
    padding: 3rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary);
}

.mv-icon svg {
    width: 40px;
    height: 40px;
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-card {
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-lg);
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.2);
    margin-bottom: 1rem;
}

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

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

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--darker);
}

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

.why-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.why-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

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

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-highlight {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    text-align: center;
}

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

/* Detailed Services Section */
.detailed-services-section {
    padding: 6rem 0;
    background: var(--darker);
}

.service-detail-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.service-detail-header {
    display: flex;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
}

.service-detail-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.service-features {
    margin-bottom: 3rem;
}

.service-features h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item li {
    color: var(--gray-light);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.feature-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-benefits h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit {
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid var(--primary);
    color: var(--gray-light);
}

/* Additional Services */
.additional-services-section {
    padding: 6rem 0;
    background: var(--dark);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.additional-card {
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.additional-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-lg);
}

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

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

/* Contact Page */
.contact-main-section {
    padding: 6rem 0;
    background: var(--darker);
}

.contact-intro {
    margin-bottom: 4rem;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    color: var(--light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.7);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--gray-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

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

.contact-info-card,
.quick-links-card {
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
}

.contact-info-card h3,
.quick-links-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

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

.quick-links-card ul {
    list-style: none;
    padding: 0;
}

.quick-links-card li {
    margin-bottom: 1rem;
}

.quick-links-card a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.quick-links-card a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: var(--darker);
}

.map-placeholder {
    margin-top: 3rem;
    height: 400px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-content svg {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-content p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.map-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.primary-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Legal Page */
.legal-content {
    padding: 6rem 0;
    background: var(--darker);
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--light);
}

.legal-section p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section strong {
    color: var(--light);
}

.legal-update {
    font-style: italic;
    color: var(--gray);
    text-align: center;
}

/* Additional Responsive */
@media (max-width: 1024px) {
    .content-grid,
    .why-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .benefits-list,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .mv-grid,
    .values-grid,
    .additional-grid,
    .why-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
}