/* Premium Dark Theme Variables */
:root {
    --bg-color: #0d0f12;
    --surface-color: #171a21;
    --surface-hover: #1e222b;
    --accent-color: #FFD700; /* Vibrant Yellow */
    --accent-hover: #ffea00;
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-family: 'Outfit', sans-serif;
    --glass-bg: rgba(23, 26, 33, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.highlight {
    color: var(--accent-color);
}

/* Typography */
h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.5rem; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 20px; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

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

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

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

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section - Apple Style */
.apple-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding-top: 120px;
    text-align: center;
    overflow-x: hidden;
    padding-bottom: 50px;
}

.gradient-text {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #a1a1aa;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.15rem;
    color: #d4d4d8;
    margin: 0 auto 40px auto;
    max-width: 650px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-apple {
    background: #fff;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-apple:hover {
    background: #e4e4e7;
    transform: scale(1.05);
}

.btn-apple-outline {
    background: transparent;
    color: #2997ff;
    padding: 15px 35px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-apple-outline:hover {
    text-decoration: underline;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
    padding: 0 20px;
}

.apple-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: perspective(1000px) rotateX(10deg);
    transition: transform 1s ease;
}

.apple-hero-img:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 100px 5% 50px 5%;
    background: var(--bg-color);
}

.about-container {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.highlight-phone {
    font-size: 1.5rem !important;
    color: var(--accent-color) !important;
    margin-top: 30px;
}

.about-section .stats-grid {
    display: flex;
    justify-content: space-around;
    padding: 60px 0 0 0;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 30px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-box h2 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    display: inline-block;
}

.stat-box .plus {
    font-size: 3.5rem;
    color: var(--accent-color);
    display: inline-block;
}

/* Services */
.services, .gallery, .contact {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
}

.section-subtitle {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--surface-hover);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

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

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

.gallery-item .placeholder {
    width: 100%;
    height: 100%;
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-item .placeholder::after {
    content: 'IMG';
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--surface-color);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s;
    margin-top: 20px;
}

.social-btn:hover {
    transform: scale(1.05);
}

/* Reviews */
.reviews-container {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.google-rating {
    text-align: center;
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stars {
    font-size: 2.2rem;
    color: #fbbc05; /* Google Gold */
    line-height: 1;
}

.reviews-list {
    display: flex;
    gap: 20px;
    width: 100%;
}

.review-card {
    background: #20242d;
    padding: 25px;
    border-radius: 15px;
    flex: 1;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stars-small {
    color: #fbbc05;
}

/* Contact Toggle */
.contact-methods {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.contact-toggle-btn {
    display: inline-block;
    padding: 15px 25px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid #444;
    text-align: center;
}

.contact-toggle-btn:hover {
    background: #444;
    transform: translateY(-2px);
}

.contact-toggle-btn.whatsapp {
    background: #25d366;
    color: #000;
    border: none;
}
.contact-toggle-btn.whatsapp:hover {
    background: #20b858;
}

.location-text-container {
    background: #20242d;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.location-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.location-text-container h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background: var(--surface-color);
}

/* Animations using classes */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .gradient-text { font-size: 3rem; }
    .reviews-list { flex-direction: column; }
    .contact-container { grid-template-columns: 1fr; padding: 30px; }
    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 70px;
        background: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
    }
    .nav-links.nav-active {
        transform: translateX(0%);
    }
    .hamburger { display: block; }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(37, 211, 102, 0.4);
    animation: none;
}

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