:root {
    /* Updated Premium Palette */
    --primary-color: #2b4a2b;
    /* Deep Royal Green */
    --accent-color: #b6d69c;
    /* Lighter Green (Logo) */
    --gold-accent: #d4af37;
    /* Metallic Gold */
    --text-color: #1a1a1a;
    --bg-color: #fdfdfd;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.6);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Subtle mesh gradient background */
    background: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
    background: linear-gradient(135deg, #fdfdfd 0%, #f1f3ee 100%);
}

.container {
    text-align: center;
    padding: 3rem;
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Logo Animation */
.logo-container {
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInDown 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    position: relative;
    display: inline-block;
}

/* Add a gold glow behind logo */
.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

.logo-img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    transition: transform 0.5s ease;
}

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

/* Typography */
h1.title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    letter-spacing: -2px;
    background: linear-gradient(45deg, var(--primary-color), #4a6c4a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 5px 15px rgba(43, 74, 43, 0.15);
    /* Soft shadow for depth */
}

p.subtitle {
    font-size: 1.35rem;
    color: #555;
    margin-bottom: 3.5rem;
    opacity: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section - Premium Card */
.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 4rem;
    border-radius: 24px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    opacity: 0.8;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.contact-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold-accent);
    /* Gold text for label */
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
}

.phone-number:hover {
    color: #436043;
}

/* Background decorations - More elegant */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #e6f0da 0%, transparent 70%);
    /* Soft Green */
    animation-delay: -5s;
}

.blob-2 {
    bottom: -10%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #fcf4dd 0%, transparent 70%);
    /* Soft Gold */
}

.blob-3 {
    top: 40%;
    left: 80%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(182, 214, 156, 0.2) 0%, transparent 70%);
    animation-duration: 25s;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 50px) rotate(10deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    h1.title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .phone-number {
        font-size: 2rem;
    }

    .contact-card {
        padding: 2rem;
        width: 100%;
    }

    .logo-img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    h1.title {
        font-size: 2.2rem;
    }

    .phone-number {
        font-size: 1.7rem;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}