/* style.css - AUTO VIBE Perfect Screen Optimization */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-glow: rgba(220, 38, 38, 0.6);
    --primary-glow-intense: rgba(220, 38, 38, 0.8);
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-light: #1f1f1f;
    --border-glow: #dc2626;
    --transition-base: all 0.3s ease;
    --shadow-glow: 0 0 30px rgba(220, 38, 38, 0.3);
    
    /* Navigation */
    --nav-height-desktop: 90px;
    --nav-height-mobile: 70px;
    
    /* Container */
    --container-padding-desktop: 2rem;
    --container-padding-mobile: 1rem;
    
    /* Font Sizes */
    --h1-desktop: 4rem;
    --h1-mobile: 2.5rem;
    --h2-desktop: 3rem;
    --h2-mobile: 2rem;
}

/* ===== Base Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height-desktop);
}

body {
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    min-height: 100vh;
}

/* ===== Typography ===== */
.logo-font {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--container-padding-mobile);
    }
    
    html {
        scroll-padding-top: var(--nav-height-mobile);
    }
}

/* ===== Section Styles ===== */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

.section-title {
    font-size: var(--h2-desktop);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: left;
}

.section-title.centered {
    text-align: center;
}

.section-title span {
    color: var(--primary);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 2rem;
}

.title-underline.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: var(--h2-mobile);
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    height: var(--nav-height-desktop);
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo Section */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.logo-main span {
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.desktop-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

/* Ultra Minimal Tiny Dot Navigation */
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    opacity: 1;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
}

/* Desktop Book Now Button */
.desktop-book-btn {
    background: var(--primary);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 0.375rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px var(--primary-glow);
    flex-shrink: 0;
}

.desktop-book-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow-intense);
}

/* ===== MOBILE MENU FIXED STYLES ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: var(--nav-height-mobile);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height-mobile));
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: block !important;
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-content a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
    position: relative;
}

.mobile-menu-content a:active {
    color: var(--primary);
    padding-left: 1rem;
}

.mobile-menu-content a.active {
    color: var(--primary);
}

/* Mobile navigation tiny dots */
.mobile-menu-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-menu-content a.active::after {
    opacity: 1;
}

.mobile-book-btn {
    background: var(--primary);
    color: white !important;
    text-align: center;
    padding: 1rem !important;
    border-radius: 0.5rem;
    border: none !important;
    margin-top: 1rem;
    font-size: 1.1rem !important;
}

.mobile-book-btn:active {
    background: var(--primary-dark) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        height: var(--nav-height-mobile);
    }
    
    .nav-container {
        padding: 0 var(--container-padding-mobile);
    }
    
    .nav-logo img {
        width: 45px;
        height: 45px;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    .desktop-nav,
    .desktop-book-btn {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .mobile-menu-toggle,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: var(--nav-height-desktop);
    overflow: hidden;
    padding: 0;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: var(--nav-height-mobile);
        min-height: calc(100vh - var(--nav-height-mobile));
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: var(--h1-desktop);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition-base);
    border: 2px solid transparent;
    letter-spacing: 1px;
    box-shadow: 0 0 30px var(--primary-glow);
}

.hero-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow-intense);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-dot {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    position: relative;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: var(--h1-mobile);
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 var(--container-padding-mobile);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text .highlight {
    color: var(--primary);
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-img-main {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-img-secondary {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

@media (max-width: 992px) {
    .about-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-light);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    width: 100%;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    transition: var(--transition-base);
}

.timeline-content:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.timeline-content.left {
    margin-right: 2rem;
    text-align: right;
}

.timeline-content.right {
    margin-left: 2rem;
    text-align: left;
}

.timeline-year {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-spacer {
    flex: 1;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        gap: 0.5rem;
    }
    
    .timeline-content.left,
    .timeline-content.right {
        margin: 0;
        text-align: left;
        width: 100%;
    }
    
    .timeline-dot {
        display: none;
    }
    
    .timeline-spacer {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
}

/* ===== WHY CARDS SECTION ===== */
.why-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.why-card.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.card-front {
    padding: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card-front h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-front p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tap-indicator {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
}

.card-back {
    padding: 1.5rem;
    background: linear-gradient(to right, #1a1a1a, var(--bg-card));
    border-top: 1px solid var(--border-light);
    animation: slideDown 0.3s ease-out;
}

.card-back p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-base);
    border: 2px solid transparent;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.cta-text {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card img {
        height: 180px;
    }
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.package-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 2rem;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
}

.package-type {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.package-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.package-footer {
    margin-top: auto;
}

.package-duration {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--bg-darker);
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.package-btn.popular-btn {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.package-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.custom-package {
    margin-top: 3rem;
    background: linear-gradient(to right, #1a1a1a, var(--bg-card));
    border-radius: 0.5rem;
    padding: 2rem;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.custom-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.custom-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.custom-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-base);
    border: 2px solid var(--primary);
    white-space: nowrap;
}

.custom-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .package-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .custom-package {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .custom-btn {
        width: 100%;
    }
}

/* ===== BRANDS MARQUEE ===== */
.brands-section {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.brands-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.brands-title span {
    color: var(--primary);
}

.brands-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.marquee-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo {
    min-width: 140px;
    height: 80px;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.brand-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.brand-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.brands-description {
    margin-top: 3rem;
    text-align: center;
}

.brands-description h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.brands-description p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .brands-title {
        font-size: 1.5rem;
    }
    
    .brand-logo {
        min-width: 100px;
        height: 60px;
    }
    
    .brand-logo img {
        max-height: 35px;
    }
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    background: var(--bg-darker);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 1rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.stats-container {
    margin-top: 3rem;
    background: linear-gradient(to right, #1a1a1a, var(--bg-card));
    border-radius: 0.5rem;
    padding: 2rem;
    border: 2px solid var(--border-light);
}

.stats-container .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card .stat-number {
        font-size: 1.8rem;
    }
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: var(--bg-dark);
}

.review-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.rating-box {
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
}

.review-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.review-actions {
    text-align: center;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.review-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.google-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.review-cta {
    background: linear-gradient(to right, #1a1a1a, var(--bg-card));
    border-radius: 0.5rem;
    padding: 2rem;
    border: 2px solid var(--primary);
    text-align: center;
    margin-top: 2rem;
}

.review-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-cta p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.cta-btn.google {
    background: #1877f2;
    color: white;
}

.cta-btn.google:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.cta-btn.map {
    background: transparent;
    color: white;
    border: 2px solid var(--primary);
}

.cta-btn.map:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .review-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(220, 38, 38, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.faq-text {
    flex: 1;
    text-align: left;
}

.faq-text h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.faq-text p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.faq-arrow {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem 1.2rem;
}

.answer-content {
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
    margin-left: 3.5rem;
}

.answer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.answer-content .highlight {
    color: var(--primary);
    font-weight: 600;
}

.faq-cta {
    margin-top: 3rem;
    background: linear-gradient(to right, #1a1a1a, var(--bg-card));
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid var(--primary);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.faq-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn.call {
    background: white;
    color: var(--primary);
}

.contact-btn.call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-contact {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    overflow: hidden;
}

.map-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.map-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.map-container {
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    padding: 2rem;
}

.contact-info-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 1.5rem;
    margin-top: 0.2rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.social-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.social-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.social-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-darker);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover {
    background: #e4405f;
}

.social-link i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.social-link:hover i {
    color: white;
}

.social-link span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.social-link:hover span {
    color: white;
}

.social-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item p {
        font-size: 0.95rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 20, 20, 0.1);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-logo-text span {
    color: var(--primary);
}

.footer-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-links h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-base);
    animation: whatsappBounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.glow-red {
    box-shadow: 0 0 30px var(--primary-glow);
}

.glow-red:hover {
    box-shadow: 0 0 40px var(--primary-glow-intense);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-float,
    .marquee-track,
    .scroll-dot::after {
        animation: none !important;
    }
}

/* ===== IMAGE OPTIMIZATION ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== TOUCH TARGET OPTIMIZATION ===== */
button,
a,
[role="button"],
input,
select,
textarea {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

/* ===== PRINT STYLES ===== */
@media print {
    .main-nav,
    .whatsapp-float,
    .hero-video,
    .map-container iframe {
        display: none !important;
    }
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

/* Services Hero Section */
.services-hero-section {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: var(--nav-height-desktop);
    overflow: hidden;
    padding: 0;
}

@media (max-width: 768px) {
    .services-hero-section {
        margin-top: var(--nav-height-mobile);
        min-height: 60vh;
    }
}

.services-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
}

.services-hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-text h1 {
    font-size: var(--h1-desktop);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.services-hero-text h1 span {
    color: var(--primary);
}

.services-hero-text .hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.services-hero-text .hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-family: 'Orbitron', sans-serif;
}

.hero-btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.hero-btn.primary:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-btn.secondary {
    border: 2px solid var(--primary);
    color: white;
}

.hero-btn.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.back-button-container {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    z-index: 10;
}

@media (max-width: 768px) {
    .back-button-container {
        top: 1rem;
        left: 1rem;
    }
}

.back-btn {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.back-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.back-icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.5rem;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-dark);
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Services Page Section */
.services-page-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services-grid-3 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
    flex-grow: 1;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.service-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.service-btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: var(--bg-darker);
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
}

.service-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Service Packages CTA - Exact styling for your buttons */
.packages-cta {
    margin-top: 4rem;
    background: linear-gradient(to right, #1a1a1a, var(--bg-card));
    border-radius: 0.5rem;
    padding: 3rem;
    border: 2px solid var(--primary);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-family: 'Orbitron', sans-serif;
    min-width: 220px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Primary Button (VIEW ALL PACKAGES) */
.cta-btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.cta-btn.primary:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow-intense);
}

/* Secondary Button (GET FREE CONSULTATION) */
.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: var(--primary);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .packages-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .cta-buttons-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .services-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-text .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-hero-text .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    .packages-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ===== SWIPER PAGINATION DOTS SIZE REDUCTION ===== */

/* Target the swiper pagination container */
.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 1rem !important;
}

/* Make the dots smaller */
.swiper-pagination-bullet {
    width: 4px !important;
    height: 4px !important;
    background: var(--text-secondary) !important;
    opacity: 0.5 !important;
    margin: 0 4px !important;
    transition: all 0.3s ease !important;
}

/* Active dot styling */
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1 !important;
    width: 10px !important; /* Slightly wider for active state */
    border-radius: 4px !important;
}

/* Even smaller on mobile */
@media (max-width: 768px) {
    .swiper-pagination-bullet {
        width: 4px !important;
        height: 4px !important;
        margin: 0 3px !important;
    }
    
    .swiper-pagination-bullet-active {
        width: 16px !important;
    }
}


