:root {
    --navy: #1a2332;
    --navy-light: #2d3e50;
    --navy-dark: #0f1419;
    --gold: #c4975f;
    --gold-dark: #a67c44;
    --gold-light: #d4a673;
    --accent-blue: #3a5a78;
    --accent-teal: #4a7c8c;
    --cream: #f5f1e8;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-light: #6a6a6a;
}

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

html {
    font-size: 16px;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.page-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Language Toggle */
.lang-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px;
}

.lang-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
}

/* Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #0a0e15 0%, 
        #1a2332 25%,
        #2d3e50 50%, 
        #3a5a78 75%,
        #1a2332 100%);
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(5deg) brightness(1.05);
    }
}

.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(196, 151, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 151, 95, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(58, 90, 120, 0.1) 0%, transparent 70%),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(196, 151, 95, 0.03) 80px, rgba(196, 151, 95, 0.03) 81px),
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(196, 151, 95, 0.03) 80px, rgba(196, 151, 95, 0.03) 81px);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 151, 95, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.main-logo {
    height: 100px;
    filter: drop-shadow(0 8px 30px rgba(196, 151, 95, 0.4));
    animation: pulse 3s infinite ease-in-out;
    transition: transform 0.3s ease;
}

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

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 8px 30px rgba(196, 151, 95, 0.4));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 12px 40px rgba(196, 151, 95, 0.6));
    }
}

/* Badge */
.badge {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, rgba(196, 151, 95, 0.2) 0%, rgba(58, 90, 120, 0.15) 100%);
    border: 2px solid var(--gold);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(196, 151, 95, 0.3);
}

/* Main Heading */
.main-heading {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
}

.heading-line {
    display: block;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.heading-line:nth-child(2) {
    animation-delay: 0.6s;
}

.heading-accent {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Description */
.description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

/* Services Preview */
.services-preview {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 1s backwards;
}

.services-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(58, 90, 120, 0.08) 100%);
    border: 1px solid rgba(196, 151, 95, 0.4);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 151, 95, 0.1) 0%, rgba(58, 90, 120, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-tag:hover {
    background: linear-gradient(135deg, rgba(196, 151, 95, 0.2) 0%, rgba(58, 90, 120, 0.15) 100%);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 151, 95, 0.3);
}

.service-tag:hover::before {
    opacity: 1;
}

.tag-icon {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
}

/* Countdown */
.countdown-header {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 1.1s backwards;
}

.countdown-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 1.2s backwards;
}

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

.countdown-value {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(196, 151, 95, 0.4);
}

.countdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.countdown-separator {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: rgba(196, 151, 95, 0.3);
    line-height: 1;
}

/* Contact Section */
.contact-section {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 1.4s backwards;
}

.contact-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Newsletter */
.newsletter {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 1.6s backwards;
}

.newsletter-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(10px);
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(196, 151, 95, 0.4);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .lang-toggle {
        top: 20px;
        right: 20px;
    }

    .content-wrapper {
        padding: 60px 20px 20px;
    }

    .main-logo {
        height: 60px;
    }

    .services-grid {
        gap: 10px;
    }

    .service-tag {
        font-size: 13px;
        padding: 10px 16px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 20px;
    }

    .newsletter-input {
        padding: 15px;
        text-align: center;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
        border-radius: 50px;
    }
}

@media (max-width: 480px) {
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-item {
        min-width: 80px;
    }

    .countdown-separator {
        display: none;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Success Animation for Newsletter */
.newsletter-form.success .newsletter-btn {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
