:root {
    --primary: #262626;
    --accent: #58655A;
    --bg: #FFFFFF;
    --subtle-bg: #F5F5F5;
    --text-muted: #666666;
    --radius-lg: 100px;
    --radius-md: 20px;
    --radius-sm: 10px;
    --container: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    background-color: var(--bg);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.align-center { text-align: center; }
.pill-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--subtle-bg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

span { color: var(--accent); }

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--primary);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid #E0E0E0;
}

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

body {
    padding-top: 80px; /* Offset for fixed header */
}

/* Header */
.header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 3000;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 3001; /* Ensure logo is above menu */
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-weight: 500;
    font-size: 15px;
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 3001; /* Above menu */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

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

/* Trust Stats */
.trust {
    padding: 60px 0;
    border-bottom: 1px solid #F0F0F0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item .stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--subtle-bg);
}

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

.section-header h2 {
    font-size: 48px;
    letter-spacing: -1.5px;
}

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

.service-card {
    background: var(--bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.service-card.rotate {
    transform: translateY(-20px);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 300px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    font-size: 14px;
    font-weight: 500;
}

.service-list i {
    color: var(--accent);
    margin-right: 8px;
}

/* About Section */
.about {
    padding: 100px 0;
}

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

.about-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 32px;
    font-size: 17px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--subtle-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-item h4 { font-size: 18px; margin-bottom: 4px; }
.feature-item p { font-size: 14px; margin: 0; }

.about-image {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* Signature Services */
.signature {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.signature .pill-label { background: rgba(255,255,255,0.1); color: white; }
.signature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sig-item {
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.sig-item:hover { 
    border-color: var(--accent); 
    background: rgba(255,255,255,0.05);
}

.sig-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.sig-desc { font-size: 14px; color: rgba(255,255,255,0.6); }

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    padding: 32px;
    background: var(--subtle-bg);
    border-radius: var(--radius-md);
}

.rating { margin-bottom: 20px; color: #FFCC00; }
.testimonial-card p { font-style: italic; margin-bottom: 24px; }
.author { font-weight: 600; font-size: 14px; }

/* Gallery */
.gallery {
    padding: 100px 0;
}

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

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* CTA Section */
.cta {
    padding: 100px 0;
}

.cta-container {
    background: var(--subtle-bg);
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta h2 { font-size: 48px; margin-bottom: 20px; }
.cta p { margin-bottom: 40px; font-size: 18px; max-width: 600px; margin-inline: auto; }

/* Contact Footer */
.footer {
    background: #111111;
    color: white;
    padding: 100px 0 20px;
}

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

.footer-info .logo { font-size: 32px; margin-bottom: 24px; display: block; color: white; }
.footer-info p { margin-bottom: 32px; color: rgba(255,255,255,0.7); font-size: 16px; }

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-links a { font-weight: 600; font-size: 18px; color: white; }
.contact-links i { margin-right: 12px; color: var(--accent); }

.hours h4 { margin-bottom: 8px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; width: fit-content; }
.hours p { font-size: 14px; }

.footer-map { border-radius: var(--radius-md); overflow: hidden; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    padding: 40px 24px;
    transition: 0.5s ease;
}

.mobile-menu.active { right: 0; }
.mobile-menu-inner { display: flex; flex-direction: column; height: 100%; gap: 60px; }
.mobile-logo { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 700; }
.mobile-links { display: flex; flex-direction: column; gap: 32px; }
.mobile-links a { font-size: 32px; font-weight: 700; font-family: 'Outfit'; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

.floating-whatsapp:hover { transform: scale(1.1); }


/* Global Word Wrap Fix */
h1, h2, h3, p, a, div {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Mobile View Adjustments */
@media (max-width: 1024px) {
    .nav-desktop, .btn-nav { display: none; }
    .hamburger { display: flex; }
    
    .hero-container, .about-container, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { order: 2; text-align: center; }
    .hero-image-wrapper { order: 1; }
    .hero-content h1 { font-size: 42px; margin-inline: auto; }
    .hero-content p { margin-inline: auto; }
    .hero-btns { justify-content: center; }
    .hero-image, .about-image { height: 400px; border-radius: 40px; }
    
    .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .service-card.rotate { transform: none; }
    .signature-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    
    .about-content { text-align: center; }
    .about-content h2 { font-size: 38px; }
    .about-features { align-items: center; }
    .feature-item { text-align: left; }
    
    .trust-container { justify-content: center; gap: 20px 40px; }
    
    .section-header h2 { font-size: 38px; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 32px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; text-align: center; }
    
    .signature-grid { grid-template-columns: 1fr; }
    .footer-grid { gap: 60px; }
    .footer-info .logo { font-size: 28px; }
    
    .about-content h2 { font-size: 32px; }
    .section-header h2 { font-size: 32px; }
    
    .cta-container { padding: 40px 20px; border-radius: 40px; }
    .cta h2 { font-size: 28px; }
    
    .stat-number { font-size: 32px; }
    
    .gallery-grid { grid-gap: 8px; }
}

@media (max-width: 400px) {
    .hero-content h1 { font-size: 28px; }
    .about-content h2, .section-header h2 { font-size: 28px; }
    .trust-container { gap: 20px; }
    .stat-item { flex: 0 0 45%; }
}

/* Reveal Animations */
.reveal-initial {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}
