@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap');


:root {
    --white: #ffffff;
    --bg: #F8F9FA;
    --main-green: #1B4332; 
    --gold: #DAA520; 
    --muted: #6b6b6b;
    --shadow: 0 10px 30px rgba(27, 67, 50, 0.08);
    --radius: 14px;
    --container: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--bg);
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}


header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logosu {
    height: 80px;
    width: auto;
    margin-left: -35px;
    display: block;
}

nav ul {
    display: flex;
    gap: 5px;
    list-style: none;
}

nav a {
   
    font-size: 0.95rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    padding: 8px 12px !important;  
    color: #6b6b6b !important;
    text-decoration: none !important;    
    letter-spacing: normal !important;
    text-transform: none !important;
}

    
    nav a:hover, nav a.active {
        color: #2D6A4F !important;
        background: rgba(46, 125, 50, 0.06) !important;
    }



.page-content {
    margin-top: 40px;
    margin-bottom: 80px;
}


.premium-page-header {
    text-align: center;
    margin-bottom: 50px;
}

    .premium-page-header h1 {
        font-family: 'Cormorant Garamond', serif;
        color: var(--main-green);
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .premium-page-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

.premium-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 25px auto;
    border-radius: 2px;
}


.premium-contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}


.contact-info-card {
    flex: 0 0 380px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--gold);
}

.contact-avatar-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    padding: 5px;
    border: 2px dashed var(--gold);
}

    .contact-avatar-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.contact-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--main-green);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-title {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.contact-details-list {
    margin-bottom: 30px;
    text-align: left;
    padding: 0 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
    font-weight: 500;
}

    .contact-detail-item i {
        color: var(--main-green);
        font-size: 1.2rem;
    }


.premium-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid transparent;
}

.whatsapp-btn-premium {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.2);
}

    .whatsapp-btn-premium:hover {
        background: #25D366;
        color: #fff;
    }

.instagram-btn-premium {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.2);
}

    .instagram-btn-premium:hover {
        background: #E1306C;
        color: #fff;
    }



.contact-form-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--main-green);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .input-group input, .input-group textarea {
        width: 100%;
        padding: 15px;
        background: #FDFBF5;
        border: 1px solid rgba(218, 165, 32, 0.3);
        border-radius: 10px;
        font-size: 1rem;
        color: #333;
        transition: 0.3s;
        font-family: 'Inter', sans-serif;
    }

        .input-group input:focus, .input-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15);
            background: var(--white);
        }

.premium-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--main-green);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .premium-submit-btn:hover {
        background: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
    }


@media (max-width: 900px) {
    .premium-contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-card, .contact-form-card {
        flex: auto;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}


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;
    }
}
.luxury-alert {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FDFBF5;
    border: 2px solid #DAA520;
    padding: 25px;
    border-radius: 15px;
    margin: 20px auto 40px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
    animation: bounceIn 0.6s ease;
}

.alert-icon {
    font-size: 3rem;
    color: #1B4332;
}

.alert-text h4 {
    color: #1B4332;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.alert-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@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;
    }
}