/* ===== Custom Fonts ===== */
@font-face {
    font-family: 'Hemmet';
    src: url('fonts/Hemmet_Personal_Use_Only.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    --primary-color: #b8860b;
    --primary-dark: #996f09;
    --secondary-color: #1a1a2e;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gold-gradient: linear-gradient(135deg, #b8860b 0%, #d4a529 50%, #b8860b 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 10px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
    overflow: hidden;
}

#preloader::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Dönen Daire */
.loader-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(184, 134, 11, 0.2);
    stroke-width: 3;
}

.circle-progress {
    fill: none;
    stroke: url(#goldGradient);
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: circle-fill 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.8));
}

@keyframes circle-fill {
    0% { stroke-dashoffset: 283; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -283; }
}

.loader-scissors-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: scissors-rotate 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(184, 134, 11, 0.6));
}

@keyframes scissors-rotate {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    25% { transform: translate(-50%, -50%) rotate(-20deg) scale(1.1); }
    50% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    75% { transform: translate(-50%, -50%) rotate(20deg) scale(1.1); }
}

/* Neon El Yazısı Efekti */
.loader-text-wrapper {
    position: relative;
    margin-top: 10px;
}

.loader-text {
    font-family: 'Hemmet', cursive;
    font-size: 5.5rem;
    font-weight: 400;
    color: transparent;
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 2s linear infinite, float 3s ease-in-out infinite;
    position: relative;
    letter-spacing: 3px;
}

.loader-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Hemmet', cursive;
    font-size: 5.5rem;
    color: var(--primary-color);
    filter: blur(15px);
    opacity: 0.7;
    z-index: -1;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; filter: blur(15px); }
    50% { opacity: 0.9; filter: blur(20px); }
}

/* Alt Yazı */
.loader-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fade-in-out 2s ease-in-out infinite;
}

@keyframes fade-in-out {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===== Header & Navigation ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

#header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* New Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a2e 100%);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo-circle i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Hemmet', cursive;
    font-size: 2.6rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2px;
}

.logo-surname {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 4px;
    transition: var(--transition);
}

#header.scrolled .logo-surname {
    color: #1a1a2e;
}

#header.scrolled .logo-circle {
    width: 45px;
    height: 45px;
}

#header.scrolled .logo-circle i {
    font-size: 1.2rem;
}

#header.scrolled .logo-name {
    font-size: 2rem;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

#header.scrolled .logo-img {
    height: 50px;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
    transition: var(--transition);
}

#header.scrolled .logo-sub {
    color: var(--text-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

#header.scrolled .nav-links a {
    color: var(--text-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 12px 25px !important;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

#header.scrolled .hamburger span {
    background: var(--text-color);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-block {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920') center/cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-title .line1 {
    display: block;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-title .line2 {
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 1.5rem;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    background: var(--gray-100);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
}

.image-frame img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.experience-badge .text {
    font-size: 0.9rem;
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.working-hours {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.working-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.working-hours h4 i {
    color: var(--primary-color);
}

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-300);
}

.working-hours ul li:last-child {
    border-bottom: none;
}

.working-hours ul li span {
    font-weight: 600;
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--secondary-color);
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card.featured p {
    color: rgba(255,255,255,0.7);
}

.service-list {
    text-align: left;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-card.featured .service-list li {
    color: rgba(255,255,255,0.8);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--gray-100);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 40px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: var(--primary-color);
}

.pricing-table {
    display: none;
}

.pricing-table.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-category {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.price-category h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.price-category h3 i {
    color: var(--primary-color);
}

.price-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--gray-300);
}

.price-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
    color: var(--text-color);
}

.item-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gray-300), var(--gray-300) 3px, transparent 3px, transparent 8px);
    margin: 0 15px;
}

.item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-item.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a86a 100%);
    margin: 10px -20px;
    padding: 15px 20px;
    border-radius: 10px;
    border-bottom: none;
}

.price-item.highlight .item-name {
    color: var(--white);
    font-weight: 600;
}

.price-item.highlight .item-price {
    color: var(--white);
    font-size: 1.2rem;
}

.price-item.highlight .item-dots {
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.5) 3px, transparent 3px, transparent 8px);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* ===== Gallery Section ===== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--secondary-color);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: calc(50% - 15px);
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    scroll-snap-align: start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
}

/* ===== Reference Dealer Section ===== */
.reference-dealer {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.reference-dealer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23b8860b" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.reference-dealer .section-header {
    position: relative;
    z-index: 1;
}

.reference-dealer .section-subtitle {
    color: var(--primary-color);
}

.reference-dealer .section-title {
    color: var(--white);
}

.reference-dealer .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.dealer-brands {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.dealer-brand {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.dealer-brand:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.2);
}

.dealer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    padding: 8px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.4);
}

.dealer-badge i {
    color: var(--white);
    font-size: 0.9rem;
}

.dealer-badge span {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.dealer-logo {
    padding: 30px 20px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.dealer-brand:hover .dealer-logo {
    background: var(--white);
    transform: scale(1.02);
}

.dealer-logo img {
    max-height: 70px;
    width: auto;
    max-width: 100%;
}

.dealer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 15px;
}

.dealer-brand:hover .dealer-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Brands Section ===== */
.brands {
    padding: 60px 0;
    background: var(--gray-100);
}

.brands-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    min-width: 150px;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-text.brand-italic {
    font-style: italic;
}

.brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: var(--secondary-color);
    letter-spacing: 3px;
    margin-top: 3px;
    font-weight: 400;
}

/* ===== Booking Section ===== */
.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.booking-info {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
}

.booking-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.quick-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.quick-contact p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--gray-100);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.contact-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card a {
    color: var(--text-light);
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.social-links {
    text-align: center;
}

.social-links h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-gradient);
    transform: translateY(-5px);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-logo .logo-sub {
    color: rgba(255,255,255,0.7);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close {
    top: 20px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    transform: scale(0.8);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--white) !important;
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reference Dealer Responsive */
    .dealer-brands {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .dealer-brand:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .line1 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .whatsapp-btn {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Reference Dealer Responsive */
    .dealer-brands {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dealer-brand {
        padding: 35px 25px;
    }
    
    .dealer-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 25px;
    }
}

/* ===== Before After Section ===== */
.before-after {
    background: var(--gray-100);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ba-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.ba-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 0;
}

.ba-label {
    position: absolute;
    bottom: 15px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.ba-before .ba-label {
    left: 15px;
}

.ba-after .ba-label {
    right: 15px;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: var(--primary-color);
}

.ba-handle-circle {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--white);
    font-size: 1.2rem;
}

.ba-info {
    padding: 25px;
    text-align: center;
}

.ba-info h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.ba-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Video Section ===== */
.video-section {
    position: relative;
    height: 600px;
    background: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%);
}

.video-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.video-content .section-subtitle {
    color: var(--primary-color);
}

.video-title {
    font-size: 3rem;
    margin: 15px 0 20px;
}

.video-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.play-btn {
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn i {
    font-size: 2.5rem;
    color: var(--white);
    margin-left: 8px;
}

.play-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.7); }
    70% { box-shadow: 0 0 0 30px rgba(184, 134, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.video-close:hover {
    color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-section {
        height: 500px;
    }
    
    .video-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
    
    .ba-slider {
        height: 300px;
    }
    
    .video-section {
        height: 450px;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .play-btn {
        width: 80px;
        height: 80px;
    }
    
    .play-btn i {
        font-size: 2rem;
    }
}

/* ===== Mobile Bottom Navigation Bar ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 99999;
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Prevent overscroll showing background */
.mobile-bottom-nav::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    z-index: -1;
}

.mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    padding: 0 10px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.7rem;
    transition: var(--transition);
    padding: 6px 10px;
    border-radius: 10px;
    min-width: 55px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.5rem;
    margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.mobile-bottom-nav .nav-item.whatsapp-nav {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    margin-top: -30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    min-width: auto;
}

.mobile-bottom-nav .nav-item.whatsapp-nav:hover {
    color: white;
    transform: scale(1.05);
}

.mobile-bottom-nav .nav-item.whatsapp-nav i {
    font-size: 1.8rem;
    margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item.whatsapp-nav span {
    font-size: 0.65rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    html {
        scroll-padding-bottom: 70px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: none;
        overscroll-behavior-y: none;
    }
    
    body {
        padding-bottom: 0;
        min-height: 100%;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: none;
        overscroll-behavior-y: none;
    }
    
    /* Wrapper for content above bottom nav */
    .footer {
        padding-bottom: 80px !important;
        margin-bottom: 0 !important;
    }
    
    .footer-bottom {
        margin-bottom: 0;
    }
    
    .whatsapp-btn {
        display: none !important;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 15px;
    }
    
    /* Improve mobile header */
    .navbar {
        padding: 10px 0;
    }
    
    .logo-name {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    /* Better mobile hero */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Mobile sections */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    /* Mobile about */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    /* Mobile services */
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Mobile pricing */
    .pricing-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .price-category h3 {
        font-size: 1.1rem;
    }
    
    .price-item {
        padding: 12px 0;
    }
    
    .item-name {
        font-size: 0.9rem;
    }
    
    .item-price {
        font-size: 0.95rem;
    }
    
    .price-item.highlight {
        margin: 8px -15px;
        padding: 12px 15px;
    }
    
    /* Mobile booking */
    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-info {
        padding: 25px;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .quick-contact .phone-link {
        font-size: 1.3rem;
    }
    
    /* Mobile contact */
    .contact-card {
        padding: 20px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    /* Mobile footer */
    .footer {
        padding-bottom: 90px;
        margin-bottom: 0;
    }
    
    .footer-bottom {
        padding-bottom: 10px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }
    
    /* Mobile gallery */
    .gallery-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    /* Mobile testimonials */
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* Mobile brands */
    .brands-slider {
        gap: 20px;
    }
    
    .brand-logo {
        min-width: 120px;
        padding: 10px 15px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .brand-sub {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .mobile-bottom-nav {
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }
    
    .mobile-bottom-nav .nav-item {
        font-size: 0.6rem;
        padding: 4px 6px;
        min-width: 45px;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 1rem;
    }
    
    .mobile-bottom-nav .nav-item.whatsapp-nav {
        padding: 8px 12px;
        margin-top: -20px;
    }
    
    .mobile-bottom-nav .nav-item.whatsapp-nav i {
        font-size: 1.2rem;
    }
    
    .back-to-top {
        bottom: 80px;
    }
    
    .footer {
        padding-bottom: 75px !important;
    }
}
