@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
    --white: #ffffff;
    --bg: #F8F9FA;
    --dark-pink: #2D6A4F;
    --pink-700: #52B788;
    --muted: #6b6b6b;
    --card-shadow: 0 10px 30px rgba(45, 106, 79, 0.1);
    --radius: 14px;
    --container: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: #111;
    line-height: 1.6;
}

.container {
    width: min(94%, var(--container));
    margin: auto;
}

header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 60;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logosu {
    height: 80px;
    width: auto;
    margin-left: -35px;
    display: block;
}

.site-title {
    font-weight: 700;
    font-size: 1.1rem;
}

nav ul {
    display: flex;
    gap: 12px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

    nav a:hover, nav a.active {
        color: var(--dark-pink);
        background: rgba(46, 125, 50, 0.06);
    }

.intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

@media (min-width: 768px) {
    .intro-section {
        flex-direction: row;
        text-align: left;
        gap: 50px;
    }
}

.intro-photo img {
    width: 300px;
    height: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
}

.intro-text {
    max-width: 600px;
}

.luxury-about-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
}

.luxury-quote {
    position: relative;
    padding-left: 55px;
    margin-bottom: 10px;
}

.gold-quote-mark {
    position: absolute;
    left: 0;
    top: -20px;
    font-family: 'Georgia', serif;
    font-size: 7rem;
    color: #DAA520;
    opacity: 0.35;
    line-height: 1;
}

.quote-title {
    font-size: 2.3rem;
    color: #1B4332;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.quote-author {
    text-align: right;
    color: #DAA520;
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    margin-top: 10px;
}

.luxury-slogan {
    font-size: 1.3rem;
    color: #2D6A4F;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.luxury-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.highlight-gold {
    color: #1B4332;
    font-weight: 700;
    background: linear-gradient(180deg, transparent 60%, rgba(218, 165, 32, 0.3) 60%);
    display: inline-block;
    padding: 0 2px;
    white-space: nowrap !important;
}

.premium-services-section {
    margin: 80px 0;
    padding: 0 15px;
}

.premium-page-header {
    text-align: center;
    margin-bottom: 50px;
}

    .premium-page-header h2 {
        font-family: 'Cormorant Garamond', serif;
        color: #1B4332;
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 5px;
        letter-spacing: -0.5px;
    }

    .premium-page-header p {
        color: #666;
        font-size: 1.1rem;
    }

.premium-divider {
    width: 80px;
    height: 3px;
    background: #DAA520;
    margin: 15px auto 25px auto;
    border-radius: 2px;
}

.vip-service-card {
    background: linear-gradient(135deg, #FDFBF5 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    border: 2px solid rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.vip-icon {
    font-size: 4rem;
    color: #1B4332;
    filter: drop-shadow(0 5px 10px rgba(27,67,50,0.15));
}

.vip-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #1B4332;
    margin-bottom: 10px;
    font-weight: 800;
}

.vip-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
}

    .service-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 4px;
        background: #DAA520;
        transition: width 0.4s ease;
        border-radius: 2px 2px 0 0;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(27, 67, 50, 0.08);
    }

        .service-card:hover::before {
            width: 80%;
        }

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    background: #FDFBF5;
    color: #1B4332;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.4s ease;
}

.service-card:hover .service-icon {
    background: #1B4332;
    color: #DAA520;
}

.service-card h4 {
    color: #1B4332;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .premium-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .premium-services-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background: none !important;
    margin: 0;
    padding: 0;
}

.premium-footer {
    background-color: #FCFBF7 !important;
    border-top: 4px solid #DAA520;
    padding-top: 1px;
    margin-top: 90px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
    position: relative;
}

.footer-fancy-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-logo-box {
    flex: 0 0 250px;
    text-align: left;
}

.fancy-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.04));
    transition: transform 0.4s ease;
}

    .fancy-logo:hover {
        transform: scale(1.03);
    }

.footer-divider {
    width: 2px;
    height: 140px;
    background: linear-gradient(to bottom, transparent, #DAA520, transparent);
    opacity: 0.4;
}

.footer-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fancy-heading {
    color: #2E7D32;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .fancy-heading i {
        color: #DAA520;
    }

.fancy-contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
}

.working-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 10px;
    margin-right: 20px;
}

.icon-gold {
    background: #ffffff;
    color: #DAA520;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.15);
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-item:hover .icon-gold, .working-hours:hover .icon-gold {
    background: #DAA520;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    margin-top: 1px;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.bottom-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.bottom-left span:first-child {
    color: #2E7D32;
    font-weight: 700;
}

.legal-links {
    margin-left: 15px;
}

    .legal-links a {
        color: #888;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .legal-links a:hover {
            color: #DAA520;
        }

.bottom-right {
    text-align: right;
}

.dev-name {
    color: #DAA520;
    font-size: 1rem;
    font-weight: 800;
}

@media (max-width: 900px) {
    .footer-fancy-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-logo-box {
        text-align: center;
    }

    .footer-divider {
        width: 150px;
        height: 2px;
        background: linear-gradient(to right, transparent, #DAA520, transparent);
    }

    .fancy-heading {
        justify-content: center;
    }

    .fancy-contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bottom-bar-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .legal-links {
        display: block;
        margin-top: 8px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column !important;
        padding: 10px 0 !important;
        gap: 12px !important;
    }

    .site-logosu {
        height: 46px !important;
        margin-left: 0 !important;
        margin-bottom: 5px;
        display: block !important;
    }

    nav ul {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 2px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    nav a {
        font-size: 10.5px !important;
        padding: 6px 6px !important;
        white-space: nowrap !important;
        letter-spacing: -0.4px !important;
        font-family: 'Inter', sans-serif !important;
    }

    .contact-grid, .contact-info-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px;
    }

    .map-container iframe {
        height: 250px !important;
        border-radius: 15px;
    }

    .contact-form-card {
        padding: 20px 15px !important;
        width: 100% !important;
    }

    .footer-fancy-wrapper {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .submit-btn {
        width: 100% !important;
        padding: 15px !important;
    }
}
