:root {
    /* Default Color Scheme (Light Orange - Most Appealing) */
    --primary: #FF9800;
    --primary-dark: #F57C00;
    --primary-light: #FFB74D;
    --accent: #FFCC80;
    --secondary: #f8f9fa;
    --dark: #202124;
    --gray: #5f6368;
    --light: #ffffff;
    --border: #e8eaed;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* Orange Shade 1: Peach */
body.theme-orange-lightest {
    --primary: #FFB74D;
    --primary-dark: #FF9800;
    --primary-light: #FFCC80;
    --accent: #FFE0B2;
}

/* Orange Shade 2: Light Orange */
body.theme-orange-light {
    --primary: #FF9800;
    --primary-dark: #F57C00;
    --primary-light: #FFB74D;
    --accent: #FFCC80;
}

/* Orange Shade 3: Coral (Default) */
body.theme-orange-default {
    --primary: #FF7043;
    --primary-dark: #F4511E;
    --primary-light: #FF8A65;
    --accent: #FFAB91;
}

/* Orange Shade 4: Logo Orange */
body.theme-orange {
    --primary: #E84C22;
    --primary-dark: #BF360C;
    --primary-light: #FF5722;
    --accent: #FF8A65;
}

/* Orange Shade 5: Deep Orange */
body.theme-orange-dark {
    --primary: #D84315;
    --primary-dark: #BF360C;
    --primary-light: #FF5722;
    --accent: #FF7043;
}

/* Orange Shade 6: Burnt Orange */
body.theme-orange-darker {
    --primary: #BF360C;
    --primary-dark: #8B2500;
    --primary-light: #D84315;
    --accent: #FF5722;
}

/* Orange Shade 7: Chestnut */
body.theme-orange-darkest {
    --primary: #8B2500;
    --primary-dark: #5D1914;
    --primary-light: #A6331A;
    --accent: #BF360C;
}

/* Orange Shade 8: Rust */
body.theme-orange-black {
    --primary: #5D1914;
    --primary-dark: #3D0F0A;
    --primary-light: #8B2500;
    --accent: #A6331A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

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

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

ul {
    list-style: none;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--light);
    box-shadow: var(--shadow);
    z-index: 1000;
    height: 100px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-only {
    display: none;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
    flex-shrink: 0;
    padding: 10px 0;
}

.logo img {
    display: block;
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links .btn-primary {
    background: var(--primary);
    color: var(--light);
    padding: 10px 20px;
    border-radius: var(--radius);
}

.nav-links .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--light);
}

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

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
}

/* Hero */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/projects/hero-modern-home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: transparent;
    color: var(--light);
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background: var(--light);
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image .placeholder-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/projects/IMG_2429.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light);
}

.about-image .placeholder-image span {
    font-size: 5rem;
}

.about-image .placeholder-image p {
    margin-top: 20px;
    opacity: 0.9;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: var(--secondary);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.service-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/projects/IMG_3431.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--light);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 30px;
}

.footer-brand .logo img {
    height: 80px;
    width: auto;
}

.footer-brand p {
    color: #9aa0a6;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4,
.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li,
.footer-col ul li {
    margin-bottom: 12px;
    color: #9aa0a6;
}

.footer-col p {
    color: #9aa0a6;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--light);
}

.footer-contact-card,
.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--primary);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    padding: 24px;
}

.footer-contact-card {
    background: transparent;
    border-top: none;
    border-left: 2px solid var(--primary);
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 24px;
    min-width: 0;
}

.contact-kicker {
    margin: 0 0 8px;
    color: var(--primary-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-heading {
    margin: 0 0 20px;
    color: var(--light);
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.footer-contact .contact-heading {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 18px;
}

.contact-stack {
    display: grid;
    gap: 0;
}

.footer-contact .contact-stack {
    gap: 10px;
}

.contact-entry {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact .contact-entry {
    grid-template-columns: 22px 1fr;
    gap: 12px;
    padding: 0;
    border-top: none;
}

.contact-entry:first-child {
    border-top: none;
    padding-top: 0;
}

.contact-entry-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 76, 34, 0.08);
    border: 1px solid rgba(232, 76, 34, 0.18);
    color: var(--primary-light);
}

.footer-contact .contact-entry-icon {
    width: 22px;
    height: 22px;
    border-radius: 0;
    background: transparent;
    border: none;
    color: var(--primary-light);
}

.contact-entry-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact .contact-entry-icon svg {
    width: 15px;
    height: 15px;
}

.contact-entry-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.contact-entry-label {
    color: #9aa0a6;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-contact .contact-entry-label {
    font-size: 0.7rem;
}

.contact-entry-value,
.contact-entry-value a {
    color: var(--light);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.footer-contact .contact-entry-value,
.footer-contact .contact-entry-value a {
    font-size: 0.98rem;
}

.contact-entry-value a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.contact-entry-value a:hover {
    color: var(--primary-light);
    border-color: rgba(255, 183, 77, 0.38);
}

.contact-entry-note {
    color: #9aa0a6;
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 13px 18px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--light);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 22px rgba(232, 76, 34, 0.22);
}

.footer-contact .contact-cta {
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: none;
}

.contact-cta:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 16px 28px rgba(232, 76, 34, 0.28);
    color: var(--light);
}

.footer-bottom {
    border-top: 1px solid #5f6368;
    padding-top: 30px;
    text-align: center;
    color: #9aa0a6;
}

/* Page Header */
/* About page header */
.page-header.about {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/projects/IMG_2320.jpg') center/cover;
    color: white;
}

.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--light);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Pages */
.content-section {
    padding: 80px 0;
}

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

.content-main h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.content-main ul {
    margin-bottom: 20px;
}

.content-main li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.content-main li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.sidebar {
    background: var(--secondary);
    padding: 30px;
    border-radius: var(--radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    margin-bottom: 20px;
}

.sidebar ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar a {
    color: var(--gray);
}

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

.content-sidebar {
    display: grid;
    gap: 20px;
    align-content: start;
}

.sidebar-card {
    background: var(--secondary);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    margin-bottom: 14px;
}

.sidebar-card ul li {
    margin-bottom: 10px;
    color: var(--gray);
}

.cta-box {
    margin-top: 30px;
    background: var(--secondary);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
}

.cta-box h3 {
    margin-bottom: 8px;
}

.cta-box p {
    margin-bottom: 16px;
}

.area-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 40px;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff4e8;
    color: var(--primary-dark);
    font-weight: 600;
    border: 1px solid rgba(232, 76, 34, 0.12);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin: 24px 0 34px;
}

.area-card {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.area-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.area-card p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 1rem;
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
}

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

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-item span {
    font-size: 1.5rem;
}

.contact-info-item h4 {
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--gray);
}

.contact-info {
    align-self: start;
}

/* Projects Grid */
.projects-section {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 3rem;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    margin-bottom: 10px;
}

.project-content p {
    color: var(--gray);
}

/* Responsive */
@media (max-width: 968px) {
    .about-grid,
    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-contact {
        grid-column: 1 / -1;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .services-grid,
    .projects-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-contact {
        grid-column: auto;
    }

    .footer-contact-card {
        padding: 22px;
        border-left: none;
        border-top: 2px solid var(--primary);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.02);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    }

    .footer-contact-card,
    .contact-card {
        padding: 22px;
        border-radius: 14px;
    }

    .contact-heading {
        font-size: 1.45rem;
    }

    .contact-entry {
        grid-template-columns: 34px 1fr;
        gap: 12px;
    }

    .footer-contact .contact-entry {
        grid-template-columns: 34px 1fr;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-contact .contact-entry:first-child {
        border-top: none;
        padding-top: 0;
    }

    .contact-entry-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .footer-contact .contact-entry-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(232, 76, 34, 0.08);
        border: 1px solid rgba(232, 76, 34, 0.18);
    }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--secondary);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.testimonial {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial .author {
    font-weight: 600;
    color: var(--dark);
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.why-item p {
    color: var(--gray);
}

.testimonial .stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Certifications Bar */
.certifications-bar {
    background: var(--primary);
    padding: 30px 0;
    border-bottom: 3px solid #D4AF37;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
}

.cert-badge {
    font-size: 1.5rem;
    color: #D4AF37;
}

.cert-badge-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: #E8FFF0;
    color: #18794E;
    box-shadow: 0 0 0 2px rgba(24, 121, 78, 0.28);
    font-size: 1.05rem;
    font-weight: 700;
}

.cert-text {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Fix brand logos - change background from blue to white */
.brand-item {
    background: #ffffff !important;
}

/* ========================================
   STICKY HEADER STYLES
   ======================================== */
header {
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* DISABLED scrolled logo */ header.scrolled .logo img {
    /* height: 50px; */
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.feature-card,
.service-card,
.project-card,
.testimonial {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.animate-in,
.service-card.animate-in,
.project-card.animate-in,
.testimonial.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }

.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }

.projects-grid .project-card:nth-child(1) { transition-delay: 0.1s; }
.projects-grid .project-card:nth-child(2) { transition-delay: 0.2s; }
.projects-grid .project-card:nth-child(3) { transition-delay: 0.3s; }

.testimonials-grid .testimonial:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .testimonial:nth-child(2) { transition-delay: 0.2s; }
.testimonials-grid .testimonial:nth-child(3) { transition-delay: 0.3s; }

/* ========================================
   FORM VALIDATION STYLES
   ======================================== */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
}

.success-message {
    background: #27ae60;
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-icon {
    font-size: 1.2rem;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    color: #9aa0a6;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: var(--primary);
    color: var(--light);
}

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.decline {
    background: transparent;
    color: #9aa0a6;
    border: 1px solid #5f6368;
}

.cookie-btn.decline:hover {
    color: var(--light);
    border-color: var(--light);
}

/* ========================================
   BREADCRUMBS NAVIGATION
   ======================================== */
.breadcrumbs {
    padding: 20px 0;
    background: var(--secondary);
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--border);
}

.breadcrumbs a {
    color: var(--primary);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: var(--dark);
    font-weight: 500;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-us {
    padding: 100px 0;
    background: var(--light);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--secondary);
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.why-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.why-feature p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   SERVICE CARD IMAGE STYLES
   ======================================== */
.service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.about-preview-image {
    width: 100%;
    height: 460px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ========================================
   BRANDS SECTION IMPROVEMENTS
   ======================================== */
.brands-section {
    padding: 80px 0;
    background: var(--secondary);
}

.brands-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.brands-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.brand-item {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: var(--transition);
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.brand-item-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

/* Brands Carousel - Double Row */
.brands-carousel-row {
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.brands-track-1,
.brands-track-2 {
    animation: scroll-left 35s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ========================================
   IMPROVED CTA BUTTONS
   ======================================== */
.btn-primary {
    background: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
}

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

.btn-secondary:hover {
    background: transparent;
    color: var(--light);
    transform: translateY(-2px);
}

/* ========================================
   IMPROVED SERVICE CARD HOVER
   ======================================== */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.testimonial {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial .author {
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}

.testimonial .stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

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

/* ========================================
   RESPONSIVE IMPROVEMENTS
   ======================================== */
@media (max-width: 768px) {
    .steps-grid::before {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    header.scrolled {
        padding: 10px 20px;
    }

    /* DISABLED scrolled logo */ header.scrolled .logo img {
        /* height: 40px; */
    }
}

/* ========================================
   COLOR PICKER WIDGET
   ======================================== */
.color-picker-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    /* height: 50px; */
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9998;
    transition: transform 0.3s ease;
    border: none;
}

.color-picker-toggle:hover {
    transform: scale(1.1);
}

.color-picker-toggle span {
    font-size: 1.5rem;
}

.color-picker-panel {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    width: 280px;
}

.color-picker-panel.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.color-picker-panel h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.color-picker-panel p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.color-option {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border-color: var(--dark);
}

.color-option-label {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 5px;
    color: var(--gray);
}

/* ========================================
   SVG ICON STYLES
   ======================================== */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

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

.icon-lg {
    width: 3rem;
    height: 3rem;
}

.icon-md {
    width: 2rem;
    height: 2rem;
}

.icon-sm {
    width: 1.5rem;
    height: 1.5rem;
}

.why-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 20px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary-dark);
}

.why-feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

/* ========================================
   CONTACT INFO CARD STYLES
   ======================================== */
.contact-info-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-info-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-item:hover .icon-wrapper {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.15);
}

.icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}

.contact-value a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 4px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.availability-badge svg {
    width: 12px;
    height: 12px;
}

.contact-cta-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3);
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 152, 0, 0.4);
    color: white;
}

/* Sidebar contact card (smaller version) */
.sidebar .contact-info-card {
    padding: 20px;
    background: var(--secondary);
}

.sidebar .contact-item {
    padding: 12px 0;
}

.sidebar .icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.sidebar .icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.sidebar .contact-label {
    font-size: 0.7rem;
}

.sidebar .contact-value {
    font-size: 0.95rem;
}
