:root {
    --primary: #DB2C4C;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text: #ffffff;
    --muted: #888888;
    --card: rgba(255, 255, 255, 0.05);
    --accent: rgba(219, 44, 76, 0.15);
}

[data-theme="light"] {
    --bg-dark: #f8f9fa;
    --bg-darker: #ffffff;
    --text: #1a1a1a;
    --muted: #666666;
    --card: rgba(0, 0, 0, 0.03);
    --accent: rgba(219, 44, 76, 0.08);
}

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

html { 
    scroll-behavior: smooth;
}

html, body { 
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg-darker);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page { 
    position: relative; 
}

/* Background effects */
.bg { 
    position: fixed; 
    inset: 0; 
    overflow: hidden; 
    pointer-events: none; 
    z-index: 0;
}

.orb { 
    position: absolute; 
    filter: blur(80px); 
    opacity: 0.4; 
    border-radius: 50%;
}

[data-theme="light"] .orb {
    opacity: 0.15;
}

.orb-1 { 
    width: 400px; 
    height: 400px; 
    background: var(--primary); 
    top: -100px; 
    right: -100px; 
    animation: float 15s ease-in-out infinite;
}

.orb-2 { 
    width: 350px; 
    height: 350px; 
    background: var(--primary); 
    bottom: -150px; 
    left: -100px; 
    animation: float 12s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 18s ease-in-out infinite;
}

/* Floating Bubbles */
.bubble {
    position: absolute;
    background: linear-gradient(135deg, rgba(219, 44, 76, 0.3), rgba(219, 44, 76, 0.1));
    border-radius: 50%;
    opacity: 0.8;
    animation: bubbleFloat linear infinite;
    filter: blur(20px) brightness(1.5);
    box-shadow: 0 0 30px rgba(219, 44, 76, 0.4), inset 0 0 60px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(219, 44, 76, 0.2);
}

.bubble-1 {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    left: 25%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.bubble-3 {
    width: 50px;
    height: 50px;
    left: 45%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.bubble-4 {
    width: 70px;
    height: 70px;
    left: 60%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.bubble-5 {
    width: 90px;
    height: 90px;
    left: 75%;
    animation-duration: 28s;
    animation-delay: 3s;
}

.bubble-6 {
    width: 55px;
    height: 55px;
    left: 15%;
    animation-duration: 19s;
    animation-delay: 6s;
}

.bubble-7 {
    width: 75px;
    height: 75px;
    left: 50%;
    animation-duration: 24s;
    animation-delay: 8s;
}

.bubble-8 {
    width: 65px;
    height: 65px;
    left: 85%;
    animation-duration: 21s;
    animation-delay: 5s;
}

@keyframes bubbleFloat {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
    10% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
        transform: translateX(30px) scale(1);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
}

[data-theme="light"] .bubble {
    background: linear-gradient(135deg, rgba(219, 44, 76, 0.2), rgba(219, 44, 76, 0.05));
    opacity: 0.6;
    filter: blur(15px) brightness(1.3);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(-20px, 30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(20px, -30px) scale(0.95);
        opacity: 0.35;
    }
    75% {
        transform: translate(-10px, 20px) scale(1.05);
        opacity: 0.45;
    }
}

/* Header */
.header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 12px 24px; 
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    animation: slideDown 0.8s ease-out;
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    /* width: px; */
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 24px auto 32px;
    display: block;
    animation: fadeInUp 1s ease-out 0.3s both;
    filter: drop-shadow(0 10px 30px rgba(219, 44, 76, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

.hero-title {
    margin: 0 0 16px 0;
    font-size: clamp(36px, 8vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: var(--text);
}

.logo { 
    font-weight: 700; 
    font-size: 24px; 
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
}

.logo .dot { 
    color: var(--primary); 
    animation: pulse 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.theme-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.theme-toggle .material-symbols-outlined {
    font-size: 24px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

[data-theme="light"] .theme-toggle {
    border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.btn-login {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
}

.btn-login::after {
    display: none;
}

.btn-login:hover {
    background: #b82545;
    transform: translateY(-2px);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hero section */
.hero { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 80px 20px;
    min-height: 90vh;
    position: relative; 
    z-index: 10;
}

.content {
    width: 100%;
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(219, 44, 76, 0.2), rgba(219, 44, 76, 0.1));
    border: 1px solid rgba(219, 44, 76, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.badge-icon {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
}

.badge-icon .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 18;
    color: var(--primary);
}

h1 { 
    margin: 0 0 16px 0; 
    font-size: clamp(36px, 8vw, 64px); 
    line-height: 1.1; 
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

h1 .location,
.hero-title .location {
    color: var(--primary);
    display: block;
    font-size: 0.6em;
    margin-top: 8px;
}

.subtitle { 
    margin: 0 0 40px 0; 
    color: var(--muted); 
    font-size: 18px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* CTA */
.cta-row { 
    display: flex; 
    gap: 16px; 
    justify-content: center;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 16px 32px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 16px;
    border: 2px solid transparent; 
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(219, 44, 76, 0.3);
}

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

.secondary {
    background: transparent;
    border: 2px solid rgba(219, 44, 76, 0.5);
    color: var(--text);
}

.secondary:hover {
    border-color: var(--primary);
    background: rgba(219, 44, 76, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Title */
.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
}

.section-title.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.service-card:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.service-card:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.service-card:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(219, 44, 76, 0.5));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(219, 44, 76, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.service-icon .material-symbols-outlined {
    font-size: 48px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 48;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-badge {
    display: inline-block;
    background: rgba(76, 219, 117, 0.2);
    border: 1px solid rgba(76, 219, 117, 0.4);
    color: #4cdd75;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .features-section {
    background: rgba(0, 0, 0, 0.02);
}

.features-list {
    display: grid;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.feature-item.animate-in {
    animation: slideInLeft 0.6s ease-out forwards;
}

.feature-item:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

.feature-item:hover {
    transform: translateX(8px) !important;
    border-color: rgba(219, 44, 76, 0.3);
}

.feature-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    font-variant-numeric: tabular-nums;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    opacity: 0;
    transform: translateY(30px);
}

.about-text.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer */
.footer { 
    padding: 60px 24px 32px; 
    text-align: center; 
    color: var(--muted); 
    position: relative; 
    z-index: 10; 
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.01);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 32px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-label {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 12px;
    color: var(--muted);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.heart-icon {
    font-size: 12px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 12;
    color: var(--primary);
    vertical-align: middle;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header { 
        padding: 0px 20px; 
    }

    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .btn-login {
        padding: 6px 16px;
        font-size: 13px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-img {
        width: 70px;
        height: 70px;
    }

    .hero {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .content {
        max-width: 100%;
    }

    .cta-row {
        flex-direction: column;
        align-items: center;
    }

    .cta {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 32px 20px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-list {
        gap: 24px;
    }

    .feature-item {
        padding: 24px;
        gap: 16px;
    }

    .feature-number {
        font-size: 24px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-text {
        font-size: 16px;
    }

    .footer {
        padding: 40px 20px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }

    .bubble-1, .bubble-6 {
        width: 40px;
        height: 40px;
    }

    .bubble-2, .bubble-4, .bubble-7 {
        width: 50px;
        height: 50px;
    }

    .bubble-3 {
        width: 35px;
        height: 35px;
    }

    .bubble-5 {
        width: 55px;
        height: 55px;
    }

    .bubble-8 {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0px 16px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-img {
        /* width: 80px; */
        height: 75px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-link {
        font-size: 12px;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .btn-login {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero {
        padding: 40px 16px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .cta {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .services {
        padding: 40px 0;
    }

    .service-card {
        padding: 24px 16px;
    }

    .features-section {
        padding: 40px 0;
    }

    .feature-item {
        padding: 20px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-text {
        font-size: 15px;
    }

    .footer {
        padding: 32px 16px 20px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}
