/* =========================================
   DESIGN TOKENS & VARIABLES
   ========================================= */
:root {
    --primary-color: #D41474;
    --primary-dark: #b31062;
    --secondary-color: #F78BC4;
    --text-color: #2A2A2A;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-alternate: #F8F8F8;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

.section-bg {
    background: linear-gradient(rgba(248, 248, 248, 0.93), rgba(248, 248, 248, 0.93)), url('Gallery/gallery1.webp') center/cover no-repeat;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 20, 116, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 20, 116, 0.4);
    color: white;
}

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

.btn-secondary:hover {
    background-color: transparent;
    color: white;
}

.btn-cta-light {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 15px 40px;
}

.btn-cta-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

.btn-primary-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 24px;
}
.btn-primary-nav:hover {
    background-color: var(--primary-dark);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    transition: var(--transition-normal);
}

/* Bright logo initially when overlay is dark, but the asset is likely colored.
   We handle links mainly. */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.navbar.scrolled .nav-links a {
    color: var(--text-color);
}
.navbar.scrolled .nav-links a:hover {
    color: var(--primary-color);
}

.navbar.scrolled .btn-primary-nav {
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}
.navbar.scrolled .mobile-menu-btn {
    color: var(--text-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition-normal);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.mobile-menu a.btn-primary-nav {
    text-align: center;
    margin-top: 20px;
    color: white;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('Photos/photo2.webp') center/cover no-repeat;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding-top: 80px;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    width: 220px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.hero-content h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content .subheadline {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    justify-content: center;
}

.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.trust-badges i {
    color: var(--secondary-color);
}

/* =========================================
   GRID LAYOUTS
   ========================================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* =========================================
   CARDS (Why Us, Services, Testimonials)
   ========================================= */
.card, .service-card, .testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card:hover, .service-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon, .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 20, 116, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

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

.card h3, .service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline-step {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
}

.timeline-step h3 {
    margin-bottom: 10px;
}

/* =========================================
   GALLERY MASONRY
   ========================================= */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 20, 116, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.stars {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-alternate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* =========================================
   SERVICE AREAS
   ========================================= */
.areas-text {
    text-align: center;
    margin-bottom: 2rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.area-badge {
    padding: 10px 25px;
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.area-badge:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
    background: linear-gradient(rgba(212, 20, 116, 0.9), rgba(212, 20, 116, 0.9)), url('Photos/photo1.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.cta-contact-methods {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-phone, .cta-whatsapp {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.cta-phone:hover, .cta-whatsapp:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: white;
    padding: 60px 0 20px;
    border-top: 1px solid #eaeaea;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 150px;
    margin: 0 auto 15px;
    display: block;
}

.footer-brand h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-alternate);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
}

.gator-link {
    color: inherit;
    font-weight: 500;
}

.gator-link:hover {
    color: var(--primary-color);
}

/* =========================================
   ANIMATIONS & EFFECTS
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.8rem; }
    .masonry-grid { column-count: 2; }
}

@media (max-width: 768px) {
    body {
        text-align: center;
    }
    
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-content { padding-top: 140px; }
    .hero-content h1 { font-size: 2.2rem; }
    
    .hero-cta { flex-direction: column; align-items: center; }
    
    .section-title { font-size: 2rem; }
    
    .masonry-grid { column-count: 2; column-gap: 15px; }
    .gallery-item { margin-bottom: 15px; }
    
    .timeline-step { padding-left: 60px; padding-top: 20px; padding-bottom: 20px; text-align: left; }
    .step-number { width: 30px; height: 30px; font-size: 1rem; left: 15px; top: 20px; }
    
    .final-cta h2 { font-size: 2.2rem; }
    
    .client-info { justify-content: center; }
}
