/* Modern CSS Variables for Premium Dark/Orange Theme */
:root {
    --bg-primary: #121214;
    --bg-secondary: #18181c;
    --bg-tertiary: #222227;
    --primary: #f27a1a;
    --primary-hover: #d6640c;
    --primary-glow: rgba(242, 122, 26, 0.45);
    --whatsapp: #25d366;
    --whatsapp-hover: #20ba5a;
    --whatsapp-glow: rgba(37, 211, 102, 0.45);
    --text-main: #f3f4f6;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(24, 24, 28, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 122, 26, 0.6);
}

.btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px var(--whatsapp-glow);
    font-size: 1rem;
    padding: 14px 28px;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.w-full {
    width: 100%;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(18, 18, 20, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

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

.nav-logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, #fff 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

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

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

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all var(--transition-normal) ease-in-out;
    background-color: var(--text-main);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at top right, rgba(242, 122, 26, 0.12), transparent 45%),
                radial-gradient(circle at bottom left, rgba(18, 18, 20, 1), var(--bg-secondary));
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm1 1h38v38H1V1zm40 0h40v40H40V0zm1 1h38v38H41V1zM0 40h40v40H0V40zm1 1h38v38H1V41zm40 0h40v40H40V40zm1 1h38v38H41V41z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(252, 122, 26, 0.08);
    border: 1px solid rgba(242, 122, 26, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: pulse 2.5s infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc strong {
    color: #fff;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(242, 122, 26, 0.1);
    color: var(--primary);
}

.feature-icon-wrapper svg {
    width: 16px;
    height: 16px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--bg-secondary);
}

/* Brands Section */
.brands-section {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.05rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.brand-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-normal);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow);
    border-color: rgba(242, 122, 26, 0.2);
}

.brand-card:hover::before {
    background-color: var(--primary);
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    margin-bottom: 24px;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.brand-logo-img {
    height: 110px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    transition: var(--transition-normal);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.brand-card:hover .brand-logo-img {
    transform: scale(1.08);
}

.brand-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.brand-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

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

.section-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

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

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 122, 26, 0.3);
    box-shadow: var(--card-shadow);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: rgba(242, 122, 26, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Appointment Section */
.appointment-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.info-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.appointment-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.appointment-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.owner-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.owner-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.owner-details h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
}

.owner-details p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--primary);
}

.contact-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--bg-tertiary);
    color: var(--primary);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.bullet-icon svg {
    width: 20px;
    height: 20px;
}

.bullet-item h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.bullet-item p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
}

.tel-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.tel-link:hover {
    text-decoration: underline;
}

/* Appointment Form */
.appointment-form-container {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: #fff;
}

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

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.required {
    color: var(--primary);
}

.form-group input, .form-group textarea {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #52525b;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(242, 122, 26, 0.15);
    background-color: var(--bg-primary);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.map-container {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.map-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.map-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.map-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.map-address {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.map-pin-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.map-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) grayscale(30%) contrast(90%);
}

/* Footer */
.footer {
    background-color: #0c0c0e;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo-container {
    margin-bottom: 20px;
}

.footer-logo {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4, .footer-hours h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-hours span {
    color: #fff;
    font-weight: 500;
}

.footer-emergency {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(242, 122, 26, 0.08);
    border: 1px solid rgba(242, 122, 26, 0.15);
    color: var(--text-main) !important;
}

.footer-emergency strong {
    color: var(--primary);
    display: block;
    font-size: 1.15rem;
    margin-top: 4px;
}

.footer-bottom {
    background-color: #08080a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #52525b;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 122, 26, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(242, 122, 26, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 122, 26, 0);
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .appointment-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        padding: 40px;
    }
    
    .map-iframe-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        justify-content: center;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 20px 0;
        font-size: 1.2rem;
        display: block;
    }
    
    .nav-btn {
        margin-top: 20px;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1.05rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .appointment-form-container {
        padding: 24px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Email Styles */
.email-link {
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition-fast);
}

.email-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-email-text {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-email-text a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-email-text a:hover {
    color: var(--primary);
}
