/* 
==============================================================
  APEX BUILDING CONSTRUCTION - MAIN STYLESHEET
  Version: 1.0
  Author: Junak Digital
  Description: Modern construction company website
==============================================================
*/

/* ===== TABLE OF CONTENTS =====
  1. Reset & Variables
  2. Base Styles
  3. Header & Navigation
  4. Hero Section
  5. Buttons
  6. Sections
  7. Why Choose Us
  8. Services
  9. Projects
  10. About
  11. Blog
  12. Contact
  13. Modals
  14. Footer
  15. Animations
  16. Responsive Design
================================ */

/* ===== 1. RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #F59E20;
    --primary-dark: #d88a1a;
    --secondary-color: #000000;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --border-color: #e0e0e0;
    
    /* Shadows */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 2. BASE STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== 3. HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== 4. HERO SECTION ===== */
.hero {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 40px 20px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    min-height: calc(100vh - 80px);
}

/* Hero Content (Left Side) */
.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 32, 0.1);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero-badge i {
    font-size: 1.1rem;
}

/* Hero Heading */
.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 800;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

/* Tagline */
.tagline {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.8s ease-out 0.4s both;
}

.tagline i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Input Group */
.hero-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-input-group input {
    flex: 1;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.hero-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 32, 0.1);
}

.cta-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 32, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 32, 0.4);
}

.cta-btn i {
    transition: var(--transition);
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Hero Image/Video (Right Side) */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-visual-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: var(--light-bg);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.hero-fallback-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.video-play-pause {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 32, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-play-pause:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

/* Hero Certifications Below Video (Right Side) */
.hero-certifications-below {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-certifications-below .cert-title {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-certifications-below .certification-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-certifications-below .certification-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 95px;
}

.hero-certifications-below .certification-logo:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-certifications-below .certification-logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.hero-certifications-below .certification-logo span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* Hero Bottom Section - Stats Horizontal */
.hero-bottom-section {
    grid-column: 1 / -1;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Hero Quick Stats - Horizontal Layout */
.hero-quick-stats {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.quick-stat {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Hide stat icons */
.stat-icon {
    display: none;
}

/* Divider between stats */
.quick-stat::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
}

.quick-stat:last-child::after {
    display: none;
}

.quick-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1;
}

.quick-stat p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Counter Animation */
.counter {
    display: inline-block;
    transition: var(--transition);
}

/* Floating Cards & Scroll Indicator */
.floating-card,
.scroll-indicator {
    display: none;
}

/* ===== 5. BUTTONS ===== */
.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(245, 158, 32, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 32, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== 6. SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(245, 158, 32, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== 7. WHY CHOOSE US ===== */
.why-choose {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(245, 158, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-color);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper i {
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== 8. SERVICES SECTION ===== */
/* .services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--white);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
} */
 /* ===== SERVICES SECTION ===== */
.services {
    background: var(--white);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
}

.service-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* View All Services Button */
.services-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-large i {
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== 9. PROJECTS SECTION ===== */
.projects {
    background: var(--light-bg);
}

.projects.completed {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    filter: brightness(0.9);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.project-status {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-ongoing {
    background: rgba(245, 158, 32, 0.15);
    color: var(--primary-color);
}

.status-completed {
    background: #E8F5E9;
    color: #2E7D32;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

/* ===== 10. ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-text .section-tag {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== 11. BLOG SECTION ===== */
.blog {
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-content h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.view-all {
    text-align: center;
}

/* ===== 12. CONTACT SECTION ===== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.info-item:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-item:hover p {
    color: var(--secondary-color);
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 32, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== 13. MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.6);
    padding: 40px 20px;
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 35px;
    border-radius: 12px;
    max-width: 650px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: slideUp 0.3s ease;
}

/* Estimate Modal */
/* ===== ESTIMATE MODAL - COMPACT VERSION ===== */
.estimate-modal .modal-content {
    max-width: 500px;
    padding: 0;
    overflow: hidden;
}

.estimate-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    padding: 30px 25px;
    text-align: center;
}

.estimate-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.estimate-header h2 {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.estimate-header p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.estimate-form {
    padding: 30px 25px;
    background: var(--white);
}

.estimate-form .form-group {
    margin-bottom: 18px;
}

.estimate-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.estimate-form .form-group label i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.estimate-form .form-group input,
.estimate-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.estimate-form .form-group input:focus,
.estimate-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 32, 0.1);
}

.estimate-form .btn-full {
    margin-top: 10px;
    font-size: 1rem;
    padding: 15px 30px;
}

.estimate-form .btn-full i {
    font-size: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .estimate-modal .modal-content {
        max-width: 95%;
        margin: 20px auto;
    }

    .estimate-header {
        padding: 25px 20px;
    }

    .estimate-header h2 {
        font-size: 1.5rem;
    }

    .estimate-form {
        padding: 25px 20px;
    }

    .estimate-form .form-group {
        margin-bottom: 15px;
    }
}


/* Modal Close Button */
.close {
    color: #aaaaaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

.estimate-modal .close {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    right: 15px;
    top: 15px;
}

.estimate-modal .close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ===== 14. FOOTER ===== */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); */
}

.footer-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #cccccc;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(245, 158, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.social-links a:hover i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom i {
    color: #ff4444;
    animation: heartbeat 1.5s infinite;
}

/* ===== 15. ANIMATIONS ===== */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 32, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(245, 158, 32, 0);
        transform: scale(1.02);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== 16. RESPONSIVE DESIGN ===== */

/* Tablet & Small Desktop (968px and below) */
@media (max-width: 968px) {
    /* Navigation */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 20px;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 80px;
        padding: 30px 20px 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-input-group {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero Content Order */
    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        gap: 20px;
    }

    .hero-bottom-section {
        order: 3;
        margin-top: 30px;
    }

    /* Hero Stats - Still Horizontal on Tablet */
    .hero-quick-stats {
        gap: 30px;
        padding: 20px 0;
    }

    .quick-stat h3 {
        font-size: 2.2rem;
    }

    .quick-stat::after {
        height: 40px;
        right: -15px;
    }

    /* Certifications */
    .hero-certifications-below .certification-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Sections */
    section h2 {
        font-size: 2.2rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Modal */
    .estimate-header {
        padding: 30px 20px;
    }
    
    .estimate-header h2 {
        font-size: 1.6rem;
    }
    
    .estimate-form {
        padding: 25px 20px;
    }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
    /* Hero Section */
    .hero {
        margin-top: 80px;
        padding: 20px 20px 40px;
    }

    /* Hero Content Order */
    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-bottom-section {
        order: 3;
        margin-top: 30px;
    }

    /* Hero Typography */
    .hero-content h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Mobile Stats - HORIZONTAL LAYOUT */
    .hero-quick-stats {
        flex-direction: row; /* Keep horizontal */
        gap: 20px;
        padding: 25px 15px;
        justify-content: space-between;
        background: linear-gradient(135deg, rgba(245, 158, 32, 0.05) 0%, rgba(245, 158, 32, 0.02) 100%);
        border-radius: 15px;
    }

    .quick-stat {
        flex: 1;
        min-width: 0;
    }

    /* Remove vertical dividers on mobile */
    .quick-stat::after {
        display: none;
    }

    /* Mobile Stat Numbers */
    .quick-stat h3 {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    /* Mobile Stat Labels */
    .quick-stat p {
        font-size: 0.75rem;
        font-weight: 600;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .projects-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Certifications */
    .certification-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .certification-logo {
        padding: 10px;
        min-height: 80px;
    }
    
    .certification-logo i {
        font-size: 1.4rem;
    }

    .hero-certifications-below .certification-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .hero-certifications-below .certification-logo {
        padding: 12px;
        min-height: 85px;
    }
    
    .hero-certifications-below .certification-logo i {
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Hero Typography */
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    /* Stats Adjustments - Still Horizontal */
    .hero-quick-stats {
        gap: 15px;
        padding: 20px 10px;
    }

    .quick-stat h3 {
        font-size: 1.8rem;
    }

    .quick-stat p {
        font-size: 0.7rem;
    }
}

/* Landscape Mobile (max-height: 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-quick-stats {
        flex-direction: row;
        gap: 20px;
        padding: 15px 0;
    }

    .quick-stat h3 {
        font-size: 1.6rem;
    }

    .quick-stat p {
        font-size: 0.7rem;
    }
}

/* ===== Floating Styling ===== */
/* ==================== ANIMATED FLOATING DESIGNER BUTTON ==================== */

.floating-designer-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(245, 158, 32, 0.5);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
    transition: all 0.3s ease;
    animation: slideInBounce 1.5s ease;
    overflow: visible;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    60% {
        transform: translateX(-20px);
        opacity: 1;
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

.floating-designer-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(245, 158, 32, 0.6);
}

.floating-designer-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.designer-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.waving-emoji {
    font-size: 2rem;
    animation: continuousWave 2.5s ease-in-out infinite;
    transform-origin: 70% 70%;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes continuousWave {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
}

.active-dot {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    background: #4CAF50;
    border: 3px solid var(--white);
    border-radius: 50%;
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
        transform: scale(1.1);
    }
}

.designer-message {
    color: var(--secondary-color);
    line-height: 1.5;
    z-index: 1;
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.message-line {
    overflow: hidden;
    white-space: nowrap;
}

.typing-text {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    animation: typing 3s steps(20) 0.5s 1 normal both;
}

.typing-text-delay {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    animation: typing 3s steps(20) 1.5s 1 normal both;
}

.typing-text-delay2 {
    display: inline-block;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    animation: typing 3s steps(20) 2.5s 1 normal both, textGlow 2s ease-in-out 3.5s infinite;
}

@keyframes typing {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    }
    50% { 
        text-shadow: 0 2px 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(245, 158, 32, 0.3);
    }
}

.click-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 3px solid rgba(0, 0, 0, 0.4);
    animation: clickPulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes clickPulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    100% {
        width: 130%;
        height: 130%;
        opacity: 0;
    }
}

.floating-designer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shine 3s ease-in-out infinite;
    border-radius: 50px;
    pointer-events: none;
}

@keyframes shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-designer-btn {
        bottom: 1rem;
        right: 1rem;
        max-width: 280px;
        padding: 0.8rem 1.2rem;
        gap: 0.8rem;
    }

    .designer-avatar {
        width: 48px;
        height: 48px;
    }

    .waving-emoji {
        font-size: 1.7rem;
    }

    .active-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .typing-text,
    .typing-text-delay {
        font-size: 0.8rem;
    }

    .typing-text-delay2 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .floating-designer-btn {
        max-width: 260px;
        padding: 0.7rem 1rem;
        bottom: 0.8rem;
        right: 0.8rem;
    }

    .designer-avatar {
        width: 45px;
        height: 45px;
    }

    .waving-emoji {
        font-size: 1.5rem;
    }

    .designer-message {
        font-size: 0.85rem;
    }

    .typing-text,
    .typing-text-delay {
        font-size: 0.75rem;
    }

    .typing-text-delay2 {
        font-size: 0.8rem;
    }
}

/* For New OnGoing Projects */
/* ==================== ONGOING PROJECTS SHOWCASE ==================== */

/* ==================== TWO ONGOING PROJECTS SHOWCASE ==================== */

.ongoing-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.ongoing-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(245,158,32,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Project Showcase Card */
.project-showcase-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.project-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

/* Alternate layout for second project */
.project-showcase-card:nth-child(even) {
    direction: rtl;
}

.project-showcase-card:nth-child(even) > * {
    direction: ltr;
}

/* Video Wrapper */
.project-video-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.project-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 25px;
}

.project-status-badge {
    background: rgba(245, 158, 32, 0.95);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: badgePulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.project-status-badge i {
    font-size: 1.3rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 10;
}

.video-play-pause {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-play-pause:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.video-play-pause i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.video-play-pause:hover i {
    color: var(--white);
}

/* Project Info */
.featured-project-info {
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-project-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.project-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Progress Bar */
.project-progress {
    margin-bottom: 25px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-header span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.progress-header strong {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ffd700 100%);
    border-radius: 10px;
    position: relative;
    animation: progressAnimation 2s ease-in-out;
    box-shadow: 0 2px 8px rgba(245, 158, 32, 0.4);
}

@keyframes progressAnimation {
    from { width: 0; }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Project Description */
.project-description {
    margin-bottom: 25px;
}

.project-description p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 32, 0.3);
}

/* Project Highlights */
.project-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.highlight-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.highlight-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: rotateY(360deg);
}

.highlight-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.highlight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 700;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Showcase CTA */
.showcase-cta {
    text-align: center;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
    .project-showcase-card {
        grid-template-columns: 1fr;
    }
    
    .project-showcase-card:nth-child(even) {
        direction: ltr;
    }
    
    .project-video-wrapper {
        min-height: 350px;
    }
    
    .featured-project-info {
        padding: 35px 30px;
    }
    
    .featured-project-info h3 {
        font-size: 1.6rem;
    }
    
    .project-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ongoing-showcase {
        padding: 60px 0;
    }
    
    .project-showcase-card {
        border-radius: 20px;
        margin-bottom: 30px;
    }
    
    .project-video-wrapper {
        min-height: 280px;
    }
    
    .featured-project-info {
        padding: 25px 20px;
    }
    
    .featured-project-info h3 {
        font-size: 1.4rem;
    }
    
    .project-meta {
        gap: 15px;
    }
    
    .meta-item {
        font-size: 0.9rem;
    }
    
    .project-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .showcase-cta {
        padding: 40px 25px;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
}

/* Estimate From */
/* ==================== MODAL Z-INDEX FIX ==================== */

/* Estimate Modal - Highest Priority */
.modal.estimate-modal,
.modal.quote-modal {
    z-index: 999999 !important; /* Highest z-index */
}

.modal.estimate-modal.active,
.modal.quote-modal.active {
    z-index: 999999 !important;
}

.modal-content {
    z-index: 1000000 !important; /* Even higher than modal backdrop */
    position: relative;
}

/* Floating Button - Lower Priority */
.floating-designer-btn {
    z-index: 9999 !important; /* Lower than modal */
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/* Hide floating button when modal is open */
body:has(.modal.active) .floating-designer-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Alternative - Force hide with class */
.floating-designer-btn.hidden {
    display: none !important;
}
/*Use Smooth Scrooling */
/* ==================== MOBILE MODAL FIX - SCROLLABLE & COMPACT ==================== */
/* ==================== ESTIMATE & QUOTE MODAL - DESKTOP & MOBILE PERFECT ==================== */

/* Modal Container */
.modal.estimate-modal,
.modal.quote-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 20px;
}

.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Modal Content - Desktop Default */
.modal-content {
    background: var(--white);
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
    margin: auto;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(100px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Close Button - Desktop */
.close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    line-height: 1;
}

.close:hover {
    background: #ff4757;
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--white);
}

/* Modal Header - Desktop */
.estimate-header,
.quote-header {
    background: linear-gradient(135deg, #F59E20 0%, #e88c0d 50%, #d17a00 100%);
    color: black;
    padding: 50px 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.estimate-header::before,
.quote-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: headerPulse 4s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-10px, -10px) scale(1.05);
    }
}

.estimate-header i,
.quote-header i {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
}

.estimate-header h2,
.quote-header h2 {
    margin-bottom: 12px;
    color: black;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.estimate-header p,
.quote-header p {
    color: black;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Modal Form - Desktop */
.estimate-form,
.quote-form {
    padding: 45px 40px;
    background: var(--white);
    border-radius: 0 0 25px 25px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group:last-of-type {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(245, 158, 32, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F59E20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

/* Submit Button */
.btn-full {
    width: 100%;
    margin-top: 20px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #F59E20 0%, #e88c0d 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 32, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 32, 0.5);
    background: linear-gradient(135deg, #e88c0d 0%, #d17a00 100%);
}

.btn-full i {
    font-size: 1.3rem;
}

/* ==================== TABLET RESPONSIVE (768px - 1024px) ==================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .modal.estimate-modal,
    .modal.quote-modal {
        padding: 30px 20px;
    }
    
    .modal-content {
        max-width: 650px;
    }
}

/* ==================== TABLET (768px and below) ==================== */
@media (max-width: 768px) {
    .modal.estimate-modal,
    .modal.quote-modal {
        padding: 20px 15px;
        align-items: flex-start;
        padding-top: 30px;
    }
    
    .modal-content {
        max-width: 95%;
        margin-top: 0;
    }
    
    .estimate-header,
    .quote-header {
        padding: 40px 30px 35px;
        border-radius: 20px 20px 0 0;
    }
    
    .estimate-header h2,
    .quote-header h2 {
        font-size: 1.8rem;
    }
    
    .estimate-header i,
    .quote-header i {
        font-size: 3rem;
    }
    
    .estimate-form,
    .quote-form {
        padding: 35px 30px;
    }
    
    .close {
        width: 42px;
        height: 42px;
        font-size: 1.7rem;
    }
}

/* ==================== MOBILE (600px and below) ==================== */
@media (max-width: 600px) {
    .modal.estimate-modal,
    .modal.quote-modal {
        padding: 10px;
        padding-top: 15px;
        align-items: flex-start;
    }
    
    .modal-content {
        max-width: 98%;
        width: 98%;
        border-radius: 18px;
        margin: 0 auto;
        max-height: 95vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    /* Compact Header */
    .estimate-header,
    .quote-header {
        padding: 30px 20px 25px;
        border-radius: 18px 18px 0 0;
        flex-shrink: 0;
    }
    
    .estimate-header h2,
    .quote-header h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .estimate-header p,
    .quote-header p {
        font-size: 0.95rem;
    }
    
    .estimate-header i,
    .quote-header i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    /* Scrollable Form */
    .estimate-form,
    .quote-form {
        padding: 25px 20px;
        max-height: calc(95vh - 200px);
        overflow-y: auto;
        overflow-x: hidden;
        flex: 1;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group:last-of-type {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .form-group input,
    .form-group select {
        padding: 13px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .btn-full {
        padding: 15px 25px;
        font-size: 1rem;
        margin-top: 18px;
    }
    
    .btn-full i {
        font-size: 1.2rem;
    }
    
    .close {
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
        top: 15px;
        right: 15px;
    }
}

/* ==================== SMALL MOBILE (480px and below) ==================== */
@media (max-width: 480px) {
    .modal.estimate-modal,
    .modal.quote-modal {
        padding: 8px;
        padding-top: 10px;
    }
    
    .modal-content {
        max-width: 100%;
        width: 100%;
        border-radius: 16px;
        max-height: 96vh;
    }
    
    .estimate-header,
    .quote-header {
        padding: 25px 18px 22px;
        border-radius: 16px 16px 0 0;
    }
    
    .estimate-header h2,
    .quote-header h2 {
        font-size: 1.35rem;
    }
    
    .estimate-header p,
    .quote-header p {
        font-size: 0.9rem;
    }
    
    .estimate-header i,
    .quote-header i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .estimate-form,
    .quote-form {
        padding: 20px 16px;
        max-height: calc(96vh - 180px);
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .btn-full {
        padding: 14px 22px;
        font-size: 0.95rem;
    }
    
    .close {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        top: 12px;
        right: 12px;
    }
}

/* ==================== CUSTOM SCROLLBAR ==================== */
.estimate-form::-webkit-scrollbar,
.quote-form::-webkit-scrollbar {
    width: 6px;
}

.estimate-form::-webkit-scrollbar-track,
.quote-form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.estimate-form::-webkit-scrollbar-thumb,
.quote-form::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.estimate-form::-webkit-scrollbar-thumb:hover,
.quote-form::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Smooth scrolling */
.estimate-form,
.quote-form {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Desktop - Large screens specific adjustments */
@media (min-width: 1200px) {
    .modal-content {
        max-width: 650px;
    }
    
    .estimate-header,
    .quote-header {
        padding: 55px 45px 45px;
    }
    
    .estimate-form,
    .quote-form {
        padding: 50px 45px;
    }
}
/* Contact Button address */
/* ==================== CONTACT INFO MODAL ==================== */
/* ==================== EXTRA COMPACT CONTACT MODAL - LIGHT BG ==================== */

.contact-info-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Much lighter - was 0.9 */
    backdrop-filter: blur(5px); /* Reduced blur */
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 15px 10px;
}

.contact-info-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.contact-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 480px; /* Reduced from 600px */
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: contactSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 18px 16px; /* Reduced from 25px 22px */
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes contactSlideIn {
    from {
        transform: translateY(-15px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Scrollbar */
.contact-modal-content::-webkit-scrollbar {
    width: 4px;
}

.contact-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.contact-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Close Button */
.contact-modal-content .close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-modal-content .close:hover {
    background: #ff4757;
    transform: rotate(90deg) scale(1.05);
}

.contact-modal-content .close i {
    font-size: 0.95rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contact-modal-content .close:hover i {
    color: var(--white);
}

/* Modal Header - Extra Compact */
.contact-modal-header {
    text-align: center;
    margin-bottom: 14px;
}

.contact-icon-large {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #F59E20 0%, #e88c0d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 6px 16px rgba(245, 158, 32, 0.3);
}

.contact-icon-large i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-modal-header h2 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-weight: 800;
}

.contact-modal-header p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Contact Details Grid - Extra Compact */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.contact-detail-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px 8px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.contact-detail-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(245, 158, 32, 0.2);
}

.contact-card-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #F59E20 0%, #e88c0d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.contact-detail-card:hover .contact-card-icon {
    transform: rotateY(360deg);
}

.contact-card-icon i {
    font-size: 1rem;
    color: var(--white);
}

.contact-card-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-detail-card h3 {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 3px;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    line-height: 1.3;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.email-link {
    word-break: break-word;
    font-size: 0.65rem;
    line-height: 1.3;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white) !important;
    padding: 6px 12px;
    border-radius: 16px;
    margin-top: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 0.85rem;
}

.contact-address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 6px;
    font-size: 0.65rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 5px 10px;
    border-radius: 14px;
    margin-top: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.65rem;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(245, 158, 32, 0.4);
}

.map-link i {
    font-size: 0.75rem;
}

.contact-time {
    color: var(--text-light);
    font-size: 0.6rem;
    margin-top: 4px;
    font-style: italic;
}

/* Social Media Section - Extra Compact */
.contact-social-section {
    text-align: center;
    margin-bottom: 12px;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.contact-social-section h4 {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.06);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0e5dbd 100%);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0c85d0 100%);
}

/* Quick Action Buttons - Extra Compact */
.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.btn-contact-action {
    padding: 9px 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-contact-action i {
    font-size: 0.85rem;
}

.btn-contact-action.primary {
    background: linear-gradient(135deg, #F59E20 0%, #e88c0d 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 158, 32, 0.3);
}

.btn-contact-action.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 32, 0.5);
}

.btn-contact-action.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-contact-action.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE - TABLET (768px) ==================== */
@media (max-width: 768px) {
    .contact-modal-content {
        max-width: 95%;
        padding: 16px 14px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ==================== RESPONSIVE - MOBILE (600px) ==================== */
@media (max-width: 600px) {
    .contact-info-modal {
        padding: 10px 8px;
        background-color: rgba(0, 0, 0, 0.3); /* Even lighter on mobile */
    }
    
    .contact-modal-content {
        padding: 16px 12px;
        border-radius: 14px;
        max-height: 92vh;
    }
    
    .contact-modal-header {
        margin-bottom: 12px;
    }
    
    .contact-modal-header h2 {
        font-size: 1.15rem;
    }
    
    .contact-modal-header p {
        font-size: 0.7rem;
    }
    
    .contact-icon-large {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }
    
    .contact-icon-large i {
        font-size: 1.2rem;
    }
    
    .contact-details-grid {
        gap: 8px;
        margin-bottom: 10px;
        grid-template-columns: 1fr;
    }
    
    .contact-detail-card {
        padding: 10px 8px;
    }
    
    .contact-card-icon {
        width: 34px;
        height: 34px;
    }
    
    .contact-card-icon i {
        font-size: 0.95rem;
    }
    
    .contact-detail-card h3 {
        font-size: 0.8rem;
    }
    
    .contact-link {
        font-size: 0.68rem;
    }
    
    .email-link {
        font-size: 0.62rem;
    }
    
    .whatsapp-link {
        padding: 6px 10px;
        font-size: 0.68rem;
    }
    
    .map-link {
        padding: 5px 10px;
        font-size: 0.62rem;
    }
    
    .contact-address {
        font-size: 0.62rem;
    }
    
    .contact-time {
        font-size: 0.58rem;
    }
    
    .contact-social-section {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .contact-social-section h4 {
        font-size: 0.75rem;
    }
    
    .social-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .contact-quick-actions {
        gap: 6px;
        grid-template-columns: 1fr;
    }
    
    .btn-contact-action {
        padding: 9px 12px;
        font-size: 0.72rem;
    }
    
    .contact-modal-content .close {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }
    
    .contact-modal-content .close i {
        font-size: 0.9rem;
    }
}

/* ==================== VERY SMALL MOBILE (480px) ==================== */
@media (max-width: 480px) {
    .contact-modal-content {
        padding: 14px 10px;
        max-width: 98%;
    }
    
    .contact-modal-header h2 {
        font-size: 1.1rem;
    }
    
    .contact-icon-large {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon-large i {
        font-size: 1.1rem;
    }
    
    .contact-detail-card {
        padding: 9px 6px;
    }
    
    .contact-card-icon {
        width: 32px;
        height: 32px;
    }
    
    .contact-card-icon i {
        font-size: 0.9rem;
    }
}

/* Prevent body scroll when modal open */
body.modal-open {
    overflow: hidden;
}

/*Contact Button */
