/* ========================================
   Bogdan Painting & Decorating - Styles
   Based on Saiin Template Design
   ======================================== */

/* CSS Variables */
:root {
    --primary-blue: #1E56A0;
    --dark-navy: #0D2B4E;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --text-dark: #1A1A2E;
    --text-gray: #6B7280;
    --gold-stars: #F59E0B;
    --light-blue-badge: #E8F4FD;
    --green-check: #10B981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(32px, 5vw, 52px);
}

h2 {
    font-size: clamp(28px, 4vw, 40px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #164785;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-blue-badge);
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--text-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo strong {
    color: var(--primary-blue);
}

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

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #E8F4FD 0%, #D6E8F7 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="300" cy="200" r="150" fill="%231E56A0" opacity="0.1"/><circle cx="350" cy="300" r="100" fill="%231E56A0" opacity="0.05"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.5;
}

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

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.hero-content > p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-phone:hover {
    color: var(--primary-blue);
}

.phone-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.phone-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stats .stars {
    color: var(--gold-stars);
    font-size: 18px;
    letter-spacing: 2px;
}

.hero-stats .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-navy);
}

.hero-stats .stat span:last-child {
    font-size: 14px;
    color: var(--text-gray);
}

/* Hero Form */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.hero-form-card h3 {
    text-align: center;
    margin-bottom: 24px;
}

.form-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--light-gray);
    padding: 4px;
    border-radius: 50px;
}

.form-tabs .tab {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.form-tabs .tab.active {
    background: var(--primary-blue);
    color: var(--white);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.1);
}

.quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* ========================================
   GALLERY PREVIEW
   ======================================== */
.gallery-preview {
    padding: 60px 0;
    background: var(--white);
}

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item.large {
    grid-row: span 2;
}

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

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

.happy-customers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.avatar-stack {
    display: flex;
}

.avatar-stack .avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--gold-stars);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: -10px;
    border: 3px solid var(--white);
}

.avatar-stack .avatar:first-child {
    margin-left: 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-content h2 {
    margin-bottom: 20px;
}

.about-content > p {
    margin-bottom: 32px;
}

.checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.check-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.about-stat .stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.about-stat .stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-badge span:last-child {
    font-size: 14px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--dark-navy);
}

.services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services .section-header h2 {
    color: var(--white);
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-icon {
    position: absolute;
    bottom: -24px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.service-content {
    padding: 32px 24px 24px;
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 16px;
}

.service-link {
    font-weight: 600;
    color: var(--primary-blue);
}

.service-link:hover {
    color: var(--dark-navy);
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio {
    padding: 100px 0;
    background: var(--white);
}

.portfolio .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio .section-header .badge,
.portfolio .section-header h2 {
    margin-bottom: 0;
}

.portfolio .section-header > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 43, 78, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 8px;
    width: fit-content;
}

.portfolio-overlay h4 {
    color: var(--white);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    padding: 100px 0;
    background: var(--light-gray);
}

.process .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue-badge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .section-header p {
    margin-top: 16px;
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #E5E7EB;
    transition: var(--transition);
}

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

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: 16px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-card .stars {
    color: var(--gold-stars);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
}

.author-info span {
    font-size: 14px;
    color: var(--text-gray);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--dark-navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-icon.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 86, 160, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(30, 86, 160, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 86, 160, 0);
    }
}

.contact-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.contact-item a:hover {
    color: var(--white);
}

.service-areas {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.service-areas strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.service-areas p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 80px 0;
    background: var(--primary-blue);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 18px;
}

.cta-phone {
    display: flex;
    justify-content: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.phone-icon-large {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon-large svg {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
}

.phone-icon-large.pulse {
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.phone-number {
    font-size: 32px;
    font-weight: 700;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 0;
    background: var(--white);
    border-top: 1px solid #E5E7EB;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col .logo {
    margin-bottom: 16px;
}

.footer-col > p {
    font-size: 15px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-gray);
    font-size: 15px;
}

.footer-col ul a:hover {
    color: var(--primary-blue);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px solid #E5E7EB;
}

.hours-list li span:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.contact-list a {
    color: var(--text-gray);
}

.contact-list a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form-wrapper {
        max-width: 500px;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

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

    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-row: auto;
    }

    .checklist {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .portfolio-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .portfolio .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .phone-number {
        font-size: 24px;
    }

    .cta-content > p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .happy-customers {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   WHATSAPP BUTTONS
   ======================================== */

/* WhatsApp green color */
:root {
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
}

/* Hero WhatsApp Button */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--whatsapp-green);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    color: var(--whatsapp-dark);
}

.whatsapp-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
    color: var(--whatsapp-green);
}

.btn-whatsapp:hover .whatsapp-icon {
    background: var(--whatsapp-green);
}

.btn-whatsapp:hover .whatsapp-icon svg {
    color: var(--white);
}

/* CTA Section WhatsApp */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.whatsapp-icon-large {
    width: 70px;
    height: 70px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-icon-large svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.whatsapp-link:hover .whatsapp-icon-large {
    background: var(--whatsapp-dark);
    transform: scale(1.05);
}

.whatsapp-text {
    font-size: 24px;
    font-weight: 700;
}

/* Green pulse animation */
.pulse-green {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: float-bounce 3s ease-in-out infinite;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.floating-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-navy);
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .floating-whatsapp-tooltip {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .whatsapp-text {
        font-size: 20px;
    }
}

/* ========================================
   GOOGLE REVIEWS BADGE
   ======================================== */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
    margin-top: 24px;
}

.google-review-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.google-review-badge .google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.google-review-badge .stars {
    color: var(--gold-stars);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .google-review-badge {
        padding: 8px 14px;
        font-size: 13px;
    }

    .google-review-badge .google-icon {
        width: 18px;
        height: 18px;
    }
}

/* AOS Animations Override */
[data-aos] {
    pointer-events: auto !important;
}
