/* ============================================
   Rides & Tides Detailing - Modern Stylesheet
   Dark theme with blue accents
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080b14;
    color: #d0d8e8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: #3b8bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6aadff;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0062cc, #3b8bff);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #7a8aa8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0056b3, #0070e0);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0068d9, #0080ff);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 11, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 139, 255, 0.15);
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(8, 11, 20, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(59, 139, 255, 0.25);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}

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

/* Nav */
#main-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

#main-nav a {
    color: #a0b0cc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#main-nav a:hover {
    color: #ffffff;
    background: rgba(59, 139, 255, 0.15);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
}

.header-phone-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    padding: 10px 24px;
    border: 2px solid rgba(59, 139, 255, 0.4);
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.header-phone-link:hover {
    background: rgba(59, 139, 255, 0.15);
    border-color: #3b8bff;
    color: #ffffff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #080b14;
}

.hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.hero-bg-logo {
    width: 80%;
    max-width: 900px;
    height: auto;
    opacity: 0.12;
    filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(0, 70, 160, 0.15) 0%, transparent 70%),
        linear-gradient(180deg,
            rgba(8, 11, 20, 0.4) 0%,
            rgba(8, 11, 20, 0.2) 40%,
            rgba(8, 11, 20, 0.6) 80%,
            rgba(8, 11, 20, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    max-width: 880px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 30px rgba(0, 86, 179, 0.4));
}

.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b8bff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.15rem;
    color: #8a9ab8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 24px;
    background: #0a0e1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    color: #9aa8c4;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.service-areas {
    margin-top: 2rem;
    padding: 24px;
    background: rgba(59, 139, 255, 0.06);
    border: 1px solid rgba(59, 139, 255, 0.15);
    border-radius: 12px;
}

.service-areas h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3b8bff;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-areas ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-areas li {
    background: rgba(59, 139, 255, 0.1);
    color: #b0c0e0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(59, 139, 255, 0.15);
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 24px;
    background: #080b14;
}

.services-category {
    margin-bottom: 60px;
}

.category-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-label span {
    font-weight: 400;
    color: #7a8aa8;
    font-size: 0.9rem;
}

.premium-label {
    color: #f0c040;
    border-bottom-color: rgba(240, 192, 64, 0.2);
}

.premium-label span {
    color: #c0a040;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.service-card {
    background: linear-gradient(180deg, rgba(16, 22, 40, 0.8), rgba(12, 16, 30, 0.9));
    border: 1px solid rgba(59, 139, 255, 0.1);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0062cc, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 70, 160, 0.15);
    border-color: rgba(59, 139, 255, 0.25);
}

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

.service-card-premium {
    border-color: rgba(240, 192, 64, 0.15);
    background: linear-gradient(180deg, rgba(30, 25, 15, 0.6), rgba(15, 12, 8, 0.8));
}

.service-card-premium::before {
    background: linear-gradient(90deg, transparent, #f0c040, transparent);
}

.service-card-premium:hover {
    border-color: rgba(240, 192, 64, 0.35);
    box-shadow: 0 20px 50px rgba(240, 192, 64, 0.1);
}

.premium-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f0c040, #d4a020);
    color: #1a1400;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    color: #3b8bff;
}

.service-card-premium .service-icon {
    color: #f0c040;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: #7a8aa8;
    line-height: 1.7;
}

/* ============================================
   CERAMIC COATING HIGHLIGHT
   ============================================ */
.ceramic {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0a0e1a, #080b14);
    position: relative;
}

.ceramic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 70, 160, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ceramic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: rgba(59, 139, 255, 0.05);
    border-color: rgba(59, 139, 255, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #3b8bff;
    background: rgba(59, 139, 255, 0.1);
    border-radius: 10px;
    padding: 8px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #7a8aa8;
    line-height: 1.6;
}

.ceramic-image {
    position: sticky;
    top: 120px;
}

.ceramic-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ceramic-image-caption {
    text-align: center;
    color: #5a6a88;
    font-size: 0.85rem;
    margin-top: 12px;
    font-style: italic;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: 100px 24px;
    background: #0a0e1a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(16, 22, 40, 0.4);
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: rgba(59, 139, 255, 0.2);
    background: rgba(16, 22, 40, 0.7);
    transform: translateY(-4px);
}

.why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    color: #3b8bff;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0;
}

.why-item p {
    font-size: 0.9rem;
    color: #7a8aa8;
    line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 100px 24px;
    background: #080b14;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-auto-flow: dense;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    background: #101628;
    cursor: pointer;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 24px;
    background: #0a0e1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(16, 22, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(59, 139, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stars {
    margin-bottom: 16px;
}

.stars span {
    color: #f0c040;
    font-size: 1.3rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #9aa8c4;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-author span {
    color: #5a6a88;
    font-size: 0.85rem;
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
    padding: 100px 24px;
    background: #080b14;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a9ab8;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(16, 22, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8aa8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3b8bff;
    box-shadow: 0 0 0 3px rgba(59, 139, 255, 0.15);
}

.form-group input::placeholder {
    color: #4a5670;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0a0e1a, #0d1224);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 70, 160, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-logo {
    width: 140px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 86, 179, 0.3));
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #050810;
    border-top: 1px solid rgba(59, 139, 255, 0.15);
    padding: 60px 24px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 0.8fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #5a6a88;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-nav a {
    color: #5a6a88;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3b8bff;
}

.footer-contact p {
    color: #5a6a88;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-contact a {
    color: #8a9ab8;
    font-weight: 600;
}

.footer-contact a:hover {
    color: #3b8bff;
}

.footer-hours {
    margin-top: 20px;
}

.footer-hours h4 {
    margin-bottom: 8px;
}

.footer-hours p {
    color: #5a6a88;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(59, 139, 255, 0.08);
    border: 1px solid rgba(59, 139, 255, 0.15);
    color: #7a8aa8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(59, 139, 255, 0.2);
    border-color: #3b8bff;
    color: #3b8bff;
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #3a4460;
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-height: 350px;
    }

    .about-image img {
        min-height: 300px;
    }

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

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

    .ceramic-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceramic-image {
        position: static;
        order: -1;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .header-inner {
        height: 72px;
    }

    .logo-img {
        height: 50px;
    }

    #main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(8, 11, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(59, 139, 255, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    #main-nav.open {
        max-height: 500px;
        padding: 16px 0;
    }

    #main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    #main-nav a {
        display: block;
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-logo {
        width: 150px;
    }

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

    .hero-subtitle {
        font-size: 1.15rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid-2 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .gallery-item-wide {
        grid-column: span 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about,
    .services,
    .ceramic,
    .why-us,
    .gallery,
    .testimonials,
    .booking,
    .cta {
        padding: 70px 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

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

    .hero-logo {
        width: 120px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 16px 36px;
        font-size: 0.95rem;
    }

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

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

    .service-areas ul {
        flex-direction: column;
    }

    .service-areas li {
        text-align: center;
    }
}
