@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Global variables and themes */
:root {
    --primary-dark: #0B1325;
    --secondary-dark: #060A14;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #F3CD5B;
    --text-light: #F4F5F6;
    --text-muted: #A0AEC0;
    --border-color: rgba(212, 175, 55, 0.2);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

p {
    color: var(--text-muted);
    font-weight: 300;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 10, 20, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li {
    white-space: nowrap;
}

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--accent-gold);
}

/* Hamburger mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 10, 20, 0.7) 0%, rgba(11, 19, 37, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-gold:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Layout Containers */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

/* Services Grid on Homepage */
.service-card {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card-image {
    width: 100%;
    height: 180px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card-sub {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Why Symphony Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    padding: 30px;
    border-left: 2px solid var(--accent-gold);
    background: rgba(255,255,255,0.02);
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Detail Service Pages Styling */
.detail-hero {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 10, 20, 0.6) 0%, var(--primary-dark) 100%);
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 80px;
}

.detail-hero-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.image-block {
    position: relative;
    width: 100%;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-block:hover img {
    transform: scale(1.03);
}

.text-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Contact Page Form & Details */
.contact-info-list {
    list-style: none;
    margin-top: 30px;
}

.contact-info-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-list span.icon {
    color: var(--accent-gold);
    font-weight: bold;
}

.contact-form {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 12px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.05);
}

/* Footer Section */
footer {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 40px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-socials a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
}

.footer-bottom a {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Floating WhatsApp Bot widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 300px;
    background: #0B1325;
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.whatsapp-popup.active {
    display: flex;
}

.whatsapp-header {
    background: #060A14;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0B1325;
}

.whatsapp-header-info h5 {
    font-size: 14px;
    margin: 0;
    color: var(--text-light);
}

.whatsapp-header-info span {
    font-size: 11px;
    color: #48BB78;
}

.whatsapp-body {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    min-height: 100px;
}

.whatsapp-bubble {
    background: var(--secondary-dark);
    padding: 12px;
    border-radius: 0 12px 12px 12px;
    border: 1px solid var(--border-color);
    font-size: 13px;
    max-width: 90%;
    color: var(--text-light);
}

.whatsapp-footer {
    padding: 10px 15px;
    background: #060A14;
    display: flex;
    border-top: 1px solid var(--border-color);
}

.whatsapp-input-btn {
    width: 100%;
    background: var(--accent-gold);
    color: #0B1325;
    border: none;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.whatsapp-input-btn:hover {
    background: var(--accent-gold-hover);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .detail-hero {
        height: auto;
        min-height: 320px;
        padding: 100px 20px 60px;
    }
    .detail-hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(6, 10, 20, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
        gap: 0;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        width: 100%;
        margin: 0;
    }
    nav ul li a {
        display: block;
        padding: 12px 20px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    .menu-toggle {
        display: flex;
        margin-right: -8px;
    }
    .section {
        padding: 60px 20px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .hero {
        height: auto;
        min-height: 500px;
        padding: 120px 20px 80px;
    }
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    .hero-content p {
        font-size: 15px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 30px;
    }
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    .symphony-admin-trigger {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .symphony-admin-panel {
        bottom: 80px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}

