/* ============================================
   DIJITIC - Digital Agency Website
   ============================================ */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #cbd5e1;
    --light: #f1f5f9;
    --light-2: #e2e8f0;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; color: var(--dark); }
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.4);
    color: var(--white);
}

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

.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover {
    background: #d97706;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* Section Styles */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 15px; }
.section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--gray-light);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}
.top-bar-left a, .top-bar-left span {
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-left a:hover { color: var(--white); }
.top-bar-right .social-links { display: flex; gap: 12px; }
.top-bar-right .social-links a { color: var(--gray-light); font-size: 0.9rem; }
.top-bar-right .social-links a:hover { color: var(--primary-light); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}
.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
}
.logo-accent { color: var(--primary); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}
.nav-menu > li > a {
    padding: 10px 16px;
    color: var(--dark-3);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: rgba(99,102,241,0.05);
}
.nav-menu > li > a .fa-chevron-down { font-size: 0.65rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--dark-3);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}
.dropdown li a:hover {
    background: var(--light);
    color: var(--primary);
}

.nav-cta { margin-left: 10px; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--gradient-2);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { color: var(--white); }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 15px; }
.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.hero-buttons .btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px);
    color: var(--primary);
}
.hero-buttons .btn-secondary {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    background: transparent;
}
.hero-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}
.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 450px;
}
.hero-card h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}
.hero-form .form-group { margin-bottom: 15px; }
.hero-form input, .hero-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
}
.hero-form input::placeholder { color: rgba(255,255,255,0.6); }
.hero-form input:focus, .hero-form select:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255,255,255,0.15);
}
.hero-form select { cursor: pointer; }
.hero-form select option { background: var(--dark); color: var(--white); }
.hero-form .btn { width: 100%; justify-content: center; padding: 14px; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-2);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; }
.service-card .btn-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.service-card .btn-link:hover { gap: 12px; }

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.solution-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--light-2);
    display: flex;
    flex-direction: column;
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(14,165,233,0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 18px;
}
.solution-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.solution-card p { color: var(--gray); font-size: 0.9rem; flex: 1; margin-bottom: 15px; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--gradient-2);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item { color: var(--white); }
.stat-icon { font-size: 2rem; margin-bottom: 10px; opacity: 0.8; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.stat-label { font-size: 0.95rem; opacity: 0.85; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonial-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--light-2);
}
.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-3);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}
.testimonial-info h4 { font-size: 1rem; margin-bottom: 2px; }
.testimonial-info span { color: var(--gray); font-size: 0.85rem; }
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-lighter);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.package-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    border: 2px solid var(--light-2);
    transition: var(--transition);
    position: relative;
}
.package-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}
.package-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.package-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}
.package-card h3 { margin-bottom: 10px; }
.package-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}
.package-period { color: var(--gray); font-size: 0.85rem; margin-bottom: 20px; }
.package-features { list-style: none; margin-bottom: 25px; text-align: left; }
.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light);
    font-size: 0.9rem;
    color: var(--dark-3);
    display: flex;
    align-items: center;
    gap: 10px;
}
.package-features li i { color: var(--success); font-size: 0.8rem; }

/* ============================================
   PROJECTS / PORTFOLIO
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--light-2);
    transition: var(--transition);
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.project-image {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(99,102,241,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay a {
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-body { padding: 20px; }
.project-category {
    display: inline-block;
    background: rgba(99,102,241,0.1);
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.project-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.project-body p { color: var(--gray); font-size: 0.9rem; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--light-2);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-image i { font-size: 3rem; color: var(--primary-light); opacity: 0.3; }
.blog-body { padding: 20px; }
.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 10px;
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-body h3 a { color: var(--dark); }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 15px; }
.blog-body .btn-link { font-size: 0.9rem; font-weight: 600; }

/* ============================================
   REFERENCES / BRANDS
   ============================================ */
.brands-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.brand-item {
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray);
    font-size: 0.95rem;
}
.brand-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    color: var(--primary);
}
.brand-item img { max-height: 50px; max-width: 120px; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.brand-item:hover img { filter: grayscale(0); opacity: 1; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-2);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 15px; font-size: 2.5rem; }
.cta-section p { opacity: 0.9; margin-bottom: 30px; font-size: 1.1rem; }
.cta-buttons { display: flex; justify-content: center; gap: 15px; position: relative; z-index: 2; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--light-2);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--primary-light); box-shadow: var(--shadow); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question i { color: var(--primary); transition: var(--transition); font-size: 0.85rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gray);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

/* ============================================
   CONTACT & FORMS
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 25px; }
.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 55px;
    height: 55px;
    background: rgba(99,102,241,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { color: var(--gray); font-size: 0.9rem; }
.contact-info-item a { color: var(--gray); }
.contact-info-item a:hover { color: var(--primary); }

.form-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid var(--light-2);
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-3);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-2);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.map-container {
    margin-top: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    background: var(--gradient-2);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.page-header h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 10px; }
.page-header p { opacity: 0.85; font-size: 1.05rem; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============================================
   DETAIL PAGES
   ============================================ */
.detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.detail-main h3 { margin-top: 25px; margin-bottom: 12px; }
.detail-main p { color: var(--dark-3); margin-bottom: 15px; line-height: 1.8; }

.detail-sidebar .sidebar-card {
    background: var(--white);
    border: 1px solid var(--light-2);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
}
.sidebar-card h4 { margin-bottom: 15px; padding-bottom: 12px; border-bottom: 2px solid var(--light); }

.feature-list { list-style: none; }
.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark-3);
}
.feature-list li i { color: var(--success); font-size: 0.85rem; }

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.alert-success { background: rgba(16,185,129,0.1); color: #065f46; border: 1px solid rgba(16,185,129,0.2); }
.alert-error { background: rgba(239,68,68,0.1); color: #991b1b; border: 1px solid rgba(239,68,68,0.2); }
.alert-info { background: rgba(99,102,241,0.1); color: #3730a3; border: 1px solid rgba(99,102,241,0.2); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.footer-logo .logo-text {
    font-size: 1.6rem;
    color: var(--white);
}
.footer-logo .logo-accent { color: var(--primary-light); }
.footer-logo img { max-height: 45px; }
.footer-desc {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-light);
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gray-light);
}
.footer-contact li i {
    color: var(--primary-light);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}
.footer-contact li a {
    color: var(--gray-light);
}
.footer-contact li a:hover {
    color: var(--white);
    padding-left: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   WHATSAPP & BACK TO TOP
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================
   QUOTE / TEKLIF PAGE
   ============================================ */
.quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.quote-section-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.checkbox-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.checkbox-item input[type="checkbox"] { width: auto; accent-color: var(--primary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .package-card.popular { transform: scale(1); }
    .hero-inner { gap: 40px; }
    h1 { font-size: 2.2rem; }
    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .top-bar-left { gap: 10px; font-size: 0.75rem; }
    .top-bar-left span:last-child { display: none; }
    .top-bar-right { display: none; }

    .mobile-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu > li > a { padding: 12px 0; border-bottom: 1px solid var(--light); }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
    }
    .nav-cta { display: none; }

    .hero { padding: 60px 0; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero h1 { font-size: 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-card { max-width: 100%; }

    .services-grid, .solutions-grid, .projects-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .packages-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .detail-content { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: repeat(2, 1fr); }

    .section { padding: 50px 0; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 15px; }
    .checkbox-group { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .brands-slider { gap: 15px; }
    .brand-item { min-width: 120px; padding: 15px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--success);
}
