/* Base Styles */
:root {
    /* Colors */
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #b78d3f;
    --light-blue: #60a5fa;
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #2a2a2a;
    --medium-gray: #94a3b8;
    --dark-gray: #cccccc;
    --text-color: #e0e0e0;
    --text-light: #a0a0a0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Container */
    --container-width: 1200px;
    --section-padding: 6rem 0;
    
    /* Buttons */
    --btn-padding: 0.75rem 1.5rem;
    --btn-radius: 50px;
    
    /* Breakpoints */
    --mobile: 576px;
    --tablet: 768px;
    --desktop: 992px;
    --large: 1200px;
    --xlarge: 1400px;
    --transition: all 0.3s ease;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9f0a0 50%, #d4af37 100%);
    --section-bg: #121212;
}

/* Base Elements */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--white);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styling */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-header h2 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
    line-height: 1.8;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-secondary);
}

.logo span {
    color: var(--secondary-color);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta .btn {
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    color: var(--white);
    overflow: hidden;
}

/* Splide Slider Customization */
#hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

#hero-slider .splide__track,
#hero-slider .splide__list,
#hero-slider .splide__slide {
    height: 100%;
}

#hero-slider .splide__slide {
    position: relative;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.slide-overlay .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.slide-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.slide-overlay p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Splide Progress Bar */
.splide__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.splide__progress__bar {
    height: 100%;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

/* Hero Features */

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-features {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.hero-features .feature {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.hero-features .feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-features .feature i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Design Improvements */

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    z-index: 1001;
}

.menu-toggle:hover {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 0;
    }
    
    .main-nav li {
        margin: 0;
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .main-nav a {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        border-left: 3px solid transparent;
    }
    
    .main-nav a::before {
        display: none;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(212, 175, 55, 0.1);
        color: var(--secondary-color);
        padding-left: 20px;
        border-left-color: var(--secondary-color);
    }
    
    .header-cta {
        display: none;
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header {
        height: 70px;
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .premium-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        height: 65px;
        padding: 8px 0;
    }
    
    .logo-img {
        height: 60px;
        margin-right: 10px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }
    
    .menu-toggle {
        font-size: 1.3rem;
        padding: 6px;
    }
    
    .main-nav {
        width: 85%;
        right: -85%;
        padding: 80px 20px 20px;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 15px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .premium-feature-card {
        padding: 2rem;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .premium-contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

/* Large Desktop Optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
        max-width: 800px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .section-header p {
        font-size: 1.2rem;
        max-width: 700px;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* Ultra-wide Desktop */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.4rem;
        max-width: 900px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    .section-header p {
        font-size: 1.3rem;
        max-width: 800px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .service-card:hover,
    .premium-feature-card:hover {
        transform: none;
    }
    
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 10px;
    }
    
    .main-nav a {
        min-height: 44px;
        padding: 15px 0;
        font-size: 1rem;
    }
    
    .contact-method {
        margin-bottom: 1.5rem;
    }
    
    input, textarea, select {
        min-height: 44px;
        font-size: 16px;
    }
    
    .main-nav a:hover {
        background: transparent;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Hero Section */

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-features .feature {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

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

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 14px 35px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 500;
}

.btn-primary:hover {
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-gray);
    border-color: var(--dark-gray);
}

.btn-outline:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 70px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
}

.logo-img {
    height: 100px;
    width: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
    background: transparent;
    box-shadow: none;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
    color: var(--secondary-color);
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: var(--secondary-color);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 2px 0 0;
    font-weight: 400;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-link:hover .tagline {
    letter-spacing: 3px;
    opacity: 1;
}

/* Navigation Styles */
.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.main-nav li {
    margin: 0 10px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;  /* Slightly larger navigation text */
    letter-spacing: 1.5px;
    padding: 8px 15px;  /* Slightly more padding for better touch targets */
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    opacity: 0.9;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
    opacity: 1;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 100%;
    background: var(--gold-gradient);
}

/* Active state for current page */
.main-nav a.active {
    font-weight: 500;
}

.header-cta .btn {
    padding: 8px 22px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    border-radius: 30px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.3);
}

.header-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
}

.header-cta .btn:hover::before {
    width: 100%;
}

.header-cta .btn i {
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1600px) {

@media (max-width: 1600px) {
    .hero-slider {
        height: 70vh;
        max-height: 650px;
    }
}

@media (max-width: 1200px) {
    .hero-slider {
        height: 65vh;
        max-height: 600px;
    }

@media (max-width: 1024px) {
    .hero-slider {
        height: 60vh;
        min-height: 450px;
        max-height: 550px;
    }
    .header .container {
        padding: 0 20px;
    }
    
    .main-nav a {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .header-cta .btn {
        padding: 7px 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 880px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        margin-left: 15px;
        z-index: 1001;
        transition: color 0.3s ease;
    }
    
    .menu-toggle:hover {
        color: var(--secondary-color);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
    
    .main-nav li {
        margin: 0;
        width: 100%;
        height: auto;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        opacity: 1;
    }
    
    .main-nav a::before {
        left: 0;
        transform: none;
        width: 0;
        height: 100%;
        opacity: 0.1;
    }
    
    .main-nav a:hover::before,
    .main-nav a.active::before {
        width: 5px;
        height: 100%;
        left: -15px;
    }
    
    .header-cta {
        margin-left: auto;
        margin-right: 10px;
    }
    
    .header-cta .btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .header {
        height: 65px;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 70px;
        margin-right: 12px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }
    
    .header-cta .btn {
        padding: 7px 12px;
        font-size: 0.7rem;
    }
    
    .header-cta .btn .btn-text {
        display: none;
    }
    
    .header-cta .btn i {
        margin: 0;
        font-size: 1rem;
    }
    
    .menu-toggle {
        font-size: 1.3rem;
        margin-left: 10px;
    }
    
    .main-nav {
        width: 85%;
        right: -85%;
        padding: 80px 25px 25px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 25%);
    z-index: 1;
    animation: gradientMove 15s ease infinite;
    background-size: 200% 200%;
    pointer-events: none;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(18, 18, 18, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-features .feature:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-features .feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.hero-features .feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    z-index: 10;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--secondary-color);
    transform: translate(-50%, 5px);
}

.scroll-down span {
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-down i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
    text-align: center;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
    color: #fff;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
    color: #fff;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.7s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    z-index: 10;
    padding: 0 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Play/Pause Button */
.slider-play-pause {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-play-pause:hover {
background: var(--secondary-color);
border-color: var(--secondary-color);
}

/* Responsive Adjustments */

    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
    
    .slider-play-pause {
        bottom: 1.5rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
}

/* Premium Process Section */
.premium-process {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.premium-process .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.premium-process .section-subtitle {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.premium-process .section-header h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.premium-process .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.process-line {
    position: absolute;
    width: 3px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 3;
    border: 3px solid #1a1a2e;
    box-shadow: 0 0 0 2px var(--secondary-color);
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-top: 25px;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.4s ease;
}

.process-step:nth-child(odd) .step-card {
    text-align: left;
    margin-left: 0;
}

.process-step:nth-child(even) .step-card {
    text-align: right;
    margin-right: 0;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-card:hover::before {
    opacity: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background: var(--secondary-color);
    color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.step-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.8rem;
}

.step-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.4s ease;
}

.step-card:hover h3::after {
    width: 80px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.step-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.step-duration {
    color: var(--secondary-color);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.step-duration i {
    margin-right: 5px;
}

.step-action {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.step-action i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.step-action:hover {
    color: #fff;
}

.step-action:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .process-step {
        display: flex;
        align-items: center;
        margin-bottom: 6rem;
    }

    .process-step:nth-child(odd) {
        justify-content: flex-start;
        text-align: left;
    }

    .process-step:nth-child(even) {
        justify-content: flex-end;
        text-align: right;
    }

    .step-number {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .step-card {
        width: calc(50% - 60px);
        margin: 0;
        text-align: left;
    }

    .process-step:nth-child(odd) .step-card {
        margin-right: 60px;
    }

    .process-step:nth-child(even) .step-card {
        margin-left: 60px;
    }

    .process-step:nth-child(even) .step-icon,
    .process-step:nth-child(even) .step-card h3::after {
        margin-left: auto;
    }

    .process-step:nth-child(odd) .step-card h3::after {
        left: 0;
        transform: none;
    }

    .process-step:nth-child(even) .step-card h3::after {
        right: 0;
        left: auto;
        transform: none;
    }
}

@media (max-width: 1200px) {
    .premium-process .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .premium-process {
        padding: 6rem 0;
    }
    
    .premium-process .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .premium-process .section-header h2 {
        font-size: 2rem;
    }
    
    .premium-process .section-header p {
        font-size: 1.1rem;
    }
    
    .process-line {
        left: 25px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        left: 0;
        transform: none;
    }
    
    .step-card {
        width: 100%;
        text-align: left;
        margin: 0;
    }
    
    .step-card h3::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .step-icon {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .premium-process {
        padding: 5rem 0;
    }
    
    .premium-process .section-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-process .section-header p {
        font-size: 1rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-card h3 {
        font-size: 1.3rem;
    }
}

/* Premium FAQ Section */
.premium-faq {
    padding: 8rem 0;
    background: #0a0a12;
    position: relative;
    overflow: hidden;
}

.premium-faq .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.premium-faq .section-header h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.premium-faq .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.premium-faq .section-header p a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-faq .section-header p a:hover {
    text-decoration: underline;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 1.8rem 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.faq-header h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
    line-height: 1.5;
}

.toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    background: var(--secondary-color);
    color: #1a1a2e;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1.5rem;
}

.faq-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.faq-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.faq-features i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.response-times {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.response-tier {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.response-tier:last-child {
    border-bottom: none;
}

.tier-label {
    color: #fff;
    font-weight: 500;
}

.tier-time {
    color: var(--secondary-color);
    font-weight: 600;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.day {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.day.highlight {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.day-name {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.day .time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.feature i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 1.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-method {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.05);
}

.payment-method i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--secondary-color);
}

.payment-method span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.faq-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik0xMSAxOGgydjJoLTJ6bTAtNGgydjJoLTJ6bTAtNGgydjJoLTJ6bTQtNGgydjJoLTJ6bTQgMGgydjJoLTJ6bTQgMGgydjJoLTJ6bTQgMGgydjJoLTJ6bTQgMGgydjJoLTJ6IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDIpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+') center/cover;
    opacity: 0.5;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.cta-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-cta .btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-cta .btn i {
    transition: transform 0.3s ease;
}

.faq-cta .btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .premium-faq .section-header h2 {
        font-size: 2.5rem;
    }
    
    .features-grid, .payment-methods {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 992px) {
    .premium-faq {
        padding: 6rem 0;
    }
    
    .faq-container {
        max-width: 800px;
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-cta {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .premium-faq .section-header h2 {
        font-size: 2rem;
    }
    
    .premium-faq .section-header p {
        font-size: 1.1rem;
    }
    
    .faq-header {
        padding: 1.5rem;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    .faq-header h3 {
        font-size: 1.1rem;
    }
    
    .features-grid, .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-cta {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .premium-faq {
        padding: 5rem 0;
    }
    
    .premium-faq .section-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-faq .section-header p {
        font-size: 1rem;
    }
    
    .faq-header {
        padding: 1.2rem 1rem;
    }
    
    .faq-icon {
        display: none;
    }
    
    .hours-grid, .features-grid, .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .response-tier {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Premium Contact Section */
.premium-contact {
    padding: 8rem 0;
    background: #0f0f1a;
    position: relative;
    overflow: hidden;
}

.premium-contact .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.premium-contact .section-header h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.premium-contact .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card, .contact-form-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info-inner, .contact-form-inner {
    padding: 2.5rem;
}

.contact-info-card h3, .contact-form-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-method {
    display: flex;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-details a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-note {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.contact-social h4 {
    color: #fff;
    margin: 2.5rem 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary-color);
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* Contact Form */
.premium-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.premium-contact-form .form-group {
    margin-bottom: 0;
}

.premium-contact-form label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.premium-contact-form .required {
    color: #ff4d4f;
}

.premium-contact-form input[type="text"],
.premium-contact-form input[type="email"],
.premium-contact-form input[type="tel"],
.premium-contact-form textarea,
.premium-contact-form select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.premium-contact-form select {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.premium-contact-form select option {
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem;
}

.premium-contact-form input:focus,
.premium-contact-form textarea:focus,
.premium-contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    pointer-events: none;
    font-size: 0.8rem;
}

.premium-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 2rem;
}

.form-submit .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-submit .btn i {
    transition: transform 0.3s ease;
}

.form-submit .btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.contact-map {
    margin-top: 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.map-container {
    position: relative;
    height: 400px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(15, 15, 26, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    max-width: 400px;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.map-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    width: 100%;
    height: 100%;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Replace this with your actual map embed code */
/* .map-placeholder {
    display: none;
} */

/* Responsive Styles */
@media (max-width: 1200px) {
    .premium-contact .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (max-width: 992px) {
    .premium-contact {
        padding: 6rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto 4rem;
    }
    
    .map-overlay {
        max-width: 100%;
        left: 0;
        right: 0;
        top: 0;
        border-radius: 0;
        background: rgba(15, 15, 26, 0.9);
    }
}

@media (max-width: 768px) {
    .premium-contact .section-header h2 {
        font-size: 2rem;
    }
    
    .premium-contact .section-header p {
        font-size: 1.1rem;
    }
    
    .premium-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-inner, .contact-form-inner {
        padding: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .premium-contact {
        padding: 5rem 0;
    }
    
    .premium-contact .section-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-contact .section-header p {
        font-size: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
    }
    
    .contact-info-inner, .contact-form-inner {
        padding: 1.5rem;
    }
}

/* Premium Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.testimonials .section-header h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 8rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.1;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    font-style: italic;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    position: relative;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0 0 0.3rem 0;
}

.rating {
    color: var(--secondary-color);
    margin-top: 0.3rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    margin-right: 0.1rem;
}

.rating span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonials .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .testimonials {
        padding: 6rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials .section-header p {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 5rem 0;
    }
    
    .testimonials .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonials .section-header p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto 1rem;
    }
}

/* Premium Service Plans - Dark Theme */
.premium-service-plans {
    padding: 8rem 0;
    background: #0f0f1a;
    position: relative;
    overflow: hidden;
}

.premium-service-plans .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.premium-service-plans .section-subtitle {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.premium-service-plans .section-header h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.premium-service-plans .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.premium-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.premium-plan-card {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.premium-plan-card.featured {
    border: 1px solid var(--secondary-color);
    transform: translateY(-10px);
}

.plan-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #1a1a2e;
    color: #fff;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    transform-origin: center;
    width: 150px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-tag.popular {
    background: var(--secondary-color);
    color: #1a1a1a;
    font-weight: 700;
}

.plan-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: #1a1a2e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.plan-price {
    margin: 1rem 0;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.plan-price .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-right: 0.2rem;
    color: var(--secondary-color);
}

.plan-price .amount {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 800;
    color: var(--secondary-color);
}

.plan-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.5rem;
    margin-left: 0.3rem;
}

.plan-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.plan-features {
    padding: 2rem;
    background: #1a1a2e;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.7rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.plan-cta {
    padding: 1.5rem 2rem;
    text-align: center;
    background: #141424;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: #1a1a1a;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid var(--secondary-color);
}

.btn-plan i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-plan:hover {
    background: transparent;
    color: var(--secondary-color);
}

.btn-plan:hover i {
    transform: translateX(5px);
}

.btn-plan.primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #1a1a1a;
}

.btn-plan.primary:hover {
    background: transparent;
    color: var(--secondary-color);
}

.plan-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.8rem;
    font-style: italic;
}

.plan-comparison {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #1a1a2e;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-comparison h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.plan-comparison p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline i {
    margin-right: 0.5rem;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: #1a1a2e;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .premium-service-plans .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .premium-service-plans {
        padding: 6rem 0;
    }
    
    .premium-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-plan-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .premium-service-plans .section-header h2 {
        font-size: 2rem;
    }
    
    .premium-service-plans .section-header p {
        font-size: 1.1rem;
    }
    
    .premium-plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 4rem;
    }
    
    .plan-comparison {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .premium-service-plans {
        padding: 5rem 0;
    }
    
    .premium-service-plans .section-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-service-plans .section-header p {
        font-size: 1rem;
    }
    
    .plan-price .amount {
        font-size: 3rem;
    }
}

/* Premium Why Choose Us Section */
.premium-why-choose-us {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.premium-why-choose-us .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.premium-why-choose-us .section-subtitle {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.premium-why-choose-us .section-header h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.premium-why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.premium-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.4s ease;
}

.premium-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.premium-feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.8rem;
}

.feature-icon-bg {
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: #1a1a1a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.premium-feature-card:hover .feature-icon-bg {
    transform: scale(1.1);
    background: var(--secondary-color);
    color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.feature-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.premium-feature-card:hover .feature-content h3::after {
    width: 60px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.feature-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: #fff;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .premium-why-choose-us .section-header h2 {
        font-size: 2.5rem;
    }
    
    .premium-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .premium-why-choose-us {
        padding: 6rem 0;
    }
    
    .premium-why-choose-us .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .premium-why-choose-us .section-header h2 {
        font-size: 2rem;
    }
    
    .premium-why-choose-us .section-header p {
        font-size: 1.1rem;
    }
    
    .premium-feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .premium-why-choose-us {
        padding: 5rem 0;
    }
    
    .premium-why-choose-us .section-header h2 {
        font-size: 1.8rem;
    }
    
    .premium-why-choose-us .section-header p {
        font-size: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
}

/* Premium Services Section */
.services {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.services .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.services .section-header h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, #1e1e2f 0%, #1a1a2e 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0.8;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    height: 6px;
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.15);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.service-card:hover .service-image::before {
    opacity: 0.5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(1deg);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(183, 141, 63, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .btn {
    background: #1a1a2e;
    color: #fff;
    border: 2px solid #1a1a2e;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-overlay .btn:hover {
    background: transparent;
    color: #1a1a2e;
}

.service-content {
    padding: 2.2rem 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-content h3 {
    color: #fff;
    margin: 0 0 1.2rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.service-card:hover .service-content h3::after {
    width: 70px;
}

.service-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.8rem 0;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.service-features {
    margin: 0.5rem 0 2rem 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.5rem;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

.service-cta {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 2px;
    align-self: flex-start;
}

.service-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transform: scaleX(0.8);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-cta i {
    margin-left: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-cta:hover {
    color: #fff;
}

.service-cta:hover::after {
    transform: scaleX(1);
    background: #fff;
}

.service-cta:hover i {
    transform: translateX(5px);
    color: #fff;
}

/* Responsive Styles for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .services {
        padding: 6rem 0;
    }
    
    .services .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 5rem 0;
    }
    
    .services .section-header h2 {
        font-size: 2rem;
    }
    
    .services .section-header p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .service-content {
        padding: 2rem 1.8rem 2.2rem;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 4rem 0;
    }
    
    .services .section-header h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .services .section-header p {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 1.8rem 1.5rem 2rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 0.5rem 0 1.8rem;
    }
    
    .service-cta {
        font-size: 0.8rem;
    }
}

/* Footer Styles */
.footer {
    background: #0f0f0f;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #e0e0e0;
    line-height: 1.6;
    padding: 0 1rem;
}

.footer p span {
    color: #d4af37;
    font-weight: 600;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 1rem 0;
    }
    
    .footer p {
        font-size: 0.8rem;
        padding: 0 0.25rem;
        line-height: 1.4;
    }
}
