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

:root {
    --primary: #D4AF37; /* Zenith Gold */
    --primary-dark: #B8860B;
    --bg-dark: #0A0A0A;
    --bg-surface: #141414;
    --text-main: #FFFFFF;
    --text-muted: #BBBBBB;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url('../images/hero.png') no-repeat center center/cover;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-button {
    background: var(--primary);
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

/* Services Section */
.section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 3rem;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Pricing Grid */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-table th {
    color: var(--primary);
    text-transform: uppercase;
}

/* Floating Actions */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    color: #000;
    font-size: 24px;
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: var(--bg-surface);
    border: 1px solid var(--primary);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}
.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-modal:hover {
    color: var(--primary);
}
.modal-header h2 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.8rem;
}
.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}
.booking-flow .form-group {
    margin-bottom: 15px;
}
.booking-flow label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 0.95rem;
}
.booking-flow select, .booking-flow input[type="text"], .booking-flow input[type="tel"], .booking-flow input[type="email"], .booking-flow input[type="datetime-local"] {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    padding: 12px;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
}
.booking-flow select:focus, .booking-flow input:focus {
    border-color: var(--primary);
    outline: none;
}
.booking-flow .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.booking-flow .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    cursor: pointer;
}
.booking-flow input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

/* Quote Form Section */
.quote-form-section {
    background: var(--bg-surface);
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
}

.quote-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input, .quote-form textarea {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.quote-form input:focus, .quote-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.quote-form button {
    margin-top: 10px;
}

/* Contact Link Enhancements */
.contact-button {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.contact-button:hover {
    opacity: 0.8;
}

/* Yellow Border Card (from user photo) */
.contact-card-premium {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    margin: 60px 0;
}

/* Footer Enhancements */
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--primary); }

.footer-info {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
}

 / *   B o o k i n g   M o d a l   * / 
 . m o d a l   { 
         d i s p l a y :   n o n e ; 
         p o s i t i o n :   f i x e d ; 
         z - i n d e x :   2 0 0 0 ; 
         l e f t :   0 ; 
         t o p :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 , 0 , 0 , 0 . 8 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 5 p x ) ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         a l i g n - i t e m s :   c e n t e r ; 
 } 
 . m o d a l - c o n t e n t   { 
         b a c k g r o u n d - c o l o r :   v a r ( - - b g - s u r f a c e ) ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - p r i m a r y ) ; 
         b o r d e r - r a d i u s :   1 5 p x ; 
         w i d t h :   9 0 % ; 
         m a x - w i d t h :   5 0 0 p x ; 
         m a x - h e i g h t :   9 0 v h ; 
         o v e r f l o w - y :   a u t o ; 
         p a d d i n g :   3 0 p x ; 
         p o s i t i o n :   r e l a t i v e ; 
         b o x - s h a d o w :   0   0   3 0 p x   r g b a ( 2 1 2 ,   1 7 5 ,   5 5 ,   0 . 2 ) ; 
 } 
 . c l o s e - m o d a l   { 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   1 5 p x ; 
         r i g h t :   2 0 p x ; 
         f o n t - s i z e :   2 8 p x ; 
         f o n t - w e i g h t :   b o l d ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   0 . 3 s ; 
 } 
 . c l o s e - m o d a l : h o v e r   { 
         c o l o r :   v a r ( - - p r i m a r y ) ; 
 } 
 . m o d a l - h e a d e r   h 2   { 
         c o l o r :   v a r ( - - p r i m a r y ) ; 
         m a r g i n - b o t t o m :   5 p x ; 
         f o n t - s i z e :   1 . 8 r e m ; 
 } 
 . m o d a l - h e a d e r   p   { 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         m a r g i n - b o t t o m :   2 5 p x ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ; 
         p a d d i n g - b o t t o m :   1 5 p x ; 
 } 
 . b o o k i n g - f l o w   . f o r m - g r o u p   { 
         m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 . b o o k i n g - f l o w   l a b e l   { 
         d i s p l a y :   b l o c k ; 
         m a r g i n - b o t t o m :   5 p x ; 
         c o l o r :   # f f f ; 
         f o n t - s i z e :   0 . 9 5 r e m ; 
 } 
 . b o o k i n g - f l o w   s e l e c t ,   . b o o k i n g - f l o w   i n p u t [ t y p e = \  
 t e x t \ ] ,   . b o o k i n g - f l o w   i n p u t [ t y p e = \ t e l \ ] ,   . b o o k i n g - f l o w   i n p u t [ t y p e = \ e m a i l \ ] ,   . b o o k i n g - f l o w   i n p u t [ t y p e = \ d a t e t i m e - l o c a l \ ]   { 
         w i d t h :   1 0 0 % ; 
         b a c k g r o u n d :   v a r ( - - b g - d a r k ) ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ; 
         p a d d i n g :   1 2 p x ; 
         c o l o r :   # f f f ; 
         b o r d e r - r a d i u s :   8 p x ; 
         f o n t - s i z e :   1 6 p x ; 
         m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 . b o o k i n g - f l o w   s e l e c t : f o c u s ,   . b o o k i n g - f l o w   i n p u t : f o c u s   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
         o u t l i n e :   n o n e ; 
 } 
 . b o o k i n g - f l o w   . c h e c k b o x - g r o u p   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   5 p x ; 
 } 
 . b o o k i n g - f l o w   . c h e c k b o x - g r o u p   l a b e l   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 0 p x ; 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         m a r g i n - b o t t o m :   0 ; 
         c u r s o r :   p o i n t e r ; 
 } 
 . b o o k i n g - f l o w   i n p u t [ t y p e = \ c h e c k b o x \ ]   { 
         a c c e n t - c o l o r :   v a r ( - - p r i m a r y ) ; 
         w i d t h :   1 8 p x ; 
         h e i g h t :   1 8 p x ; 
 } 
  
 