/* =========================================
   PREMIUM THEME - EXCELLENCE DENTAL
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-dark: #112A46;
    --accent-gold: #D4AF37;
    --text-muted: #4A5568;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    background-color: var(--bg-light);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .heading-serif {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-weight: 600;
}

/* --- Navigation --- */
.premium-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.premium-nav .navbar-brand img {
    max-height: 60px;
}

.premium-nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    color: var(--primary-dark) !important;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.premium-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

/* --- Hero Section --- */
.hero-premium {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    background: url('../img/bg-img/home-carousel-1.jpg') center center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(17, 42, 70, 0.9) 0%, rgba(17, 42, 70, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc {
    color: #F8F9FA;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
}

/* --- Premium Buttons --- */
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(17, 42, 70, 0.3);
    transform: translateY(-3px);
}

/* --- Sections & Cards --- */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto 30px auto;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* --- Footer --- */
.footer-premium {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-premium h5 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-premium a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-premium a:hover {
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-premium { height: 80vh; }
}
/* =========================================
   PREMIUM CONTACT PAGE STYLES
   ========================================= */

/* Page Header */
.page-header {
    background-color: var(--primary-dark);
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/bg-img/home-carousel-1.jpg') center/cover;
    opacity: 0.1; /* Subtle texture */
    pointer-events: none;
}

/* Premium Form */
.premium-form .form-control {
    background-color: #F8F9FA;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 14px;
    color: var(--primary-dark);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: none;
}

.premium-form .form-control:focus {
    border-color: var(--accent-gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.premium-form textarea.form-control {
    resize: none;
}

.premium-form label {
    font-weight: 500;
    font-size: 13px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Info Card */
.contact-info-card {
    background-color: var(--primary-dark);
    border-radius: 16px;
    padding: 50px 40px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(17, 42, 70, 0.2);
    height: 100%;
}

.contact-info-card h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-detail-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 20px;
}

.contact-detail-text h6 {
    color: var(--accent-gold);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-detail-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Map Container */
.premium-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 450px;
}