/* ===========================
   Service O.P Automobile
   Premium Automotive Website
   =========================== */

/* CSS Variables */
:root {
    --black: #000000;
    --gold-primary: #E8DDB5;
    --gold-secondary: #F5EACD;
    --gold-dark: #C9B896;
    --white: #FFFFFF;
    --grey-dark: #333333;
    --grey-medium: #1a1a1a;
    --grey-light: #444444;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Roboto', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --shadow-gold: 0 0 20px rgba(232, 221, 181, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

ul {
    list-style: none;
}

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

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

/* Typography */
.gold-text {
    color: var(--gold-primary);
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    margin: 0 auto 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.btn-primary:hover {
    background: var(--gold-primary);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

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

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--black);
    border: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.logo-text .gold {
    color: var(--gold-primary);
    margin-left: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--black);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--gold-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 221, 181, 0.15);
    border: 1px solid var(--gold-primary);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.hero-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* About Section */
.about {
    padding: 120px 0;
    background: var(--black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-primary);
    border-radius: 8px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--black);
    padding: 25px 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-dark);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--gold-primary);
}

.about-paragraph {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-paragraph strong {
    color: var(--white);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--grey-dark);
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background: var(--grey-medium);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.feature-card {
    background: var(--black);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--grey-dark);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(232, 221, 181, 0.2), rgba(245, 234, 205, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--black);
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--grey-dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.tab-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-color: var(--gold-primary);
    color: var(--black);
}

.service-content {
    display: none;
}

.service-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card {
    background: var(--grey-medium);
    border: 1px solid var(--grey-dark);
    border-radius: 8px;
    padding: 35px 25px;
    position: relative;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(232, 221, 181, 0.1), transparent);
}

.service-card.premium {
    border-color: rgba(232, 221, 181, 0.3);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--grey-dark);
    color: var(--white);
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.service-badge.gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--black);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(232, 221, 181, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 45px;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.service-features i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.service-price {
    text-align: center;
    margin-bottom: 20px;
    margin-top: auto;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* Mobile Service Banner */
.mobile-service-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(232, 221, 181, 0.15), rgba(245, 234, 205, 0.05));
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    padding: 40px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon i {
    font-size: 2rem;
    color: var(--black);
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--grey-medium);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--black);
    padding: 10px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.image-label.gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--black);
}

.gallery-overlay {
    grid-column: 1 / -1;
    padding: 15px;
    text-align: center;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Full width comparison card */
.gallery-card.full-width {
    grid-template-columns: 1fr;
}

.gallery-card.full-width .gallery-image.comparison {
    grid-column: 1 / -1;
}

.gallery-card.full-width .gallery-image.comparison img {
    height: 300px;
    width: 100%;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--black);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--grey-medium);
    border: 1px solid var(--grey-dark);
    border-radius: 8px;
    padding: 35px;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    border-color: var(--gold-primary);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold-primary);
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.2rem;
    color: var(--black);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gold-primary);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--grey-medium);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--black);
    border: 1px solid var(--grey-dark);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--gold-primary);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(232, 221, 181, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--gold-primary);
}

.contact-details h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--gold-secondary);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--black);
    border: 1px solid var(--grey-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.social-link i {
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover i {
    color: var(--black);
}

/* Contact Form */
.contact-form-container {
    background: var(--black);
    border: 1px solid var(--grey-dark);
    border-radius: 8px;
    padding: 40px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--gold-primary);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--grey-medium);
    border: 1px solid var(--grey-dark);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
}

.cta-content .btn-gold {
    background: var(--black);
    color: var(--gold-primary);
}

.cta-content .btn-gold:hover {
    background: var(--grey-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--black);
    padding: 80px 0 30px;
    border-top: 1px solid var(--grey-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--gold-primary);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold-primary);
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--grey-dark);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 10px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        gap: 8px;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hamburger span {
        width: 26px;
    }

    .nav-menu.active {
        width: 100%;
        padding: 80px 30px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        padding: 120px 15px 80px;
    }

    .hero-badge {
        position: relative;
        margin-bottom: 20px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero-badge span {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding-left: 20px;
    }

    .hero-feature {
        gap: 8px;
    }

    .hero-feature i {
        font-size: 1rem;
    }

    .hero-feature span {
        font-size: 0.85rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
    }

    /* Sections */
    .about,
    .services,
    .gallery,
    .contact {
        padding: 80px 0;
    }

    .why-us,
    .testimonials {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* About Section */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .about-paragraph {
        font-size: 0.95rem;
    }

    .image-frame img {
        height: 350px;
    }

    .experience-badge {
        bottom: -20px;
        right: 10px;
        padding: 15px 20px;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .exp-text {
        font-size: 0.7rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Services */
    .service-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0 20px;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.9rem;
        min-height: auto;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .price {
        font-size: 1.6rem;
    }

    /* Mobile Service Banner */
    .mobile-service-banner {
        padding: 25px 20px;
        margin-top: 40px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .banner-icon {
        width: 60px;
        height: 60px;
    }

    .banner-icon i {
        font-size: 1.5rem;
    }

    .banner-text {
        min-width: auto;
    }

    .banner-text h3 {
        font-size: 1.2rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image img {
        height: 150px;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    .gallery-cta p {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-card {
        padding: 20px 15px;
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.1rem;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details a {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .contact-form h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
        height: 50px;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-contact p {
        justify-content: center;
        font-size: 0.85rem;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-content .btn-lg {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Navigation for small screens */
    .nav-container {
        padding: 0 10px;
    }

    .nav-logo {
        gap: 6px;
    }

    .hamburger span {
        width: 22px;
    }

    .nav-menu.active {
        width: 100%;
        padding: 60px 20px;
    }

    /* Hero adjustments for very small screens */
    .hero-content {
        padding: 100px 12px 60px;
    }

    .hero-badge {
        padding: 6px 12px;
        gap: 6px;
    }

    .hero-badge i {
        font-size: 0.8rem;
    }

    .hero-badge span {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        max-width: 280px;
    }

    .hero-buttons .btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .hero-features {
        padding-left: 10px;
    }

    .hero-feature span {
        font-size: 0.8rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.4rem;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    /* About */
    .about-heading {
        font-size: 1.3rem;
    }

    .image-frame img {
        height: 280px;
    }

    /* Service card */
    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

    .service-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        top: -10px;
        right: 15px;
    }

    /* Contact form */
    .contact-form-container {
        padding: 20px 15px;
    }

    /* Back to top */
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Navigation logo */
    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .logo-text .gold {
        display: block;
        margin-left: 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--grey-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Selection Color */
::selection {
    background: var(--gold-primary);
    color: var(--black);
}
