/* NOBLE AC SERVICES GOA - PREMIUM STYLESHEET 
   Color Palette: Deep Slate (#0f172a) & Luxury Gold (#d4af37)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --dark: #0f172a;
    --light-dark: #1e293b;
    --glass: rgba(30, 41, 59, 0.7);
    --white: #ffffff;
    --text-gray: #94a3b8;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Navigation --- */
nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--gold);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.85)), 
                url('https://images.unsplash.com/photo-1614607242094-b1b2ad7a515c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.badge {
    background: var(--gold);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--gold);
    display: block;
    font-size: 4rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn-main {
    background: var(--gold);
    color: var(--dark);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-main:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
    margin-left: 20px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* --- Sections Common --- */
.container {
    max-width: 1250px;
    margin: auto;
    padding: 120px 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
}

.line {
    width: 70px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.stat-card {
    background: var(--light-dark);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 4px solid var(--gold);
    transition: var(--transition);
}

.stat-card:hover { transform: scale(1.03); }

.stat-card span {
    font-size: 45px;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    background: rgba(30, 41, 59, 0.9);
}

.service-box i {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 25px;
}

.service-box h3 {
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.service-box p {
    font-size: 14px;
    color: var(--text-gray);
}

/* --- Pricing Section --- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--light-dark);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.price-card.highlighted {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    background: #1a2436;
}

.price {
    font-size: 50px;
    font-weight: 800;
    color: var(--gold);
    margin: 25px 0;
}

.price span { font-size: 18px; }

.price-card ul {
    list-style: none;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.price-card ul li { margin-bottom: 12px; }

/* --- Locations --- */
.location-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.location-list span {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.location-list span:hover {
    background: var(--gold);
    color: var(--dark);
}

/* --- Floating Buttons --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-wa, .btn-call {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: var(--transition);
    text-decoration: none;
}

.btn-wa { background: #25d366; }
.btn-call { background: #3b82f6; }

.btn-wa:hover, .btn-call:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --- Footer --- */
footer {
    background: #050a14;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .hero h1 span { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 15px 5%; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero h1 span { font-size: 2rem; }
    .btn-outline { margin-left: 0; margin-top: 15px; width: 100%; }
    .btn-main { width: 100%; }
    .section-header h2 { font-size: 2rem; }
    .floating-contact { bottom: 20px; right: 20px; }
    .btn-wa, .btn-call { width: 55px; height: 55px; font-size: 25px; }
}