@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Theme variables (Samsun Tadilat Dünyası) */
:root{
    --brand-blue: #0A2A4A;       /* Darker primary blue */
    --brand-blue-700:#081F38;    /* Deeper blue */
    --brand-blue-500:#123E6B;    /* Lighter blue */
    --brand-yellow:#F59E0B;      /* Yellow-Orange primary */
    --brand-yellow-600:#EA8A00;  /* Deeper orange */
    --brand-yellow-300:#FFD37A;  /* Lighter yellow */
    --brand-dark:#1f2937;        /* Base dark for text */
    /* Derived tokens */
    --brand-yellow-rgb: 245, 158, 11; /* rgb of --brand-yellow */
    --brand-blue-rgb: 10, 42, 74;     /* rgb of --brand-blue */
    --grad-yellow: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-600));
    --grad-yellow-soft: linear-gradient(15deg, var(--brand-yellow) 20%, var(--brand-yellow-600) 70%, var(--brand-yellow) 100%);
    --grad-blue: radial-gradient(1200px 600px at 50% 0%, var(--brand-blue-500), var(--brand-blue));
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f2739;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1f2937; /* ensure headings remain visible */
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    background: transparent;
    padding: 20px 0;
    padding-top: 15px;
}

.header.scrolled {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
}

.header.scrolled .logo {
    width: 90px;
    height: 90px;
}

.main-header {
    background: transparent;
    transition: all 0.5s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 40px;
}


.nav-left .nav-list {
    justify-content: flex-start;
}

.nav-right .nav-list {
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    padding: 8px 18px;
    border-radius: 5px;
    transition: 0.3s all ease;
}

.nav-list li:has(a[class="btn btn-secondary"]) {
    padding: 0 !important;

}

.nav-list li:hover {
    background: rgb(184 188 216 / 15%);
}

.logo {
    position: relative;
    text-align: center;
    transition: 0.3s all ease-in-out;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease;
    height: 150px;
    width: 150px;
    background: #ede29e;
    border-radius: 50%;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {

    position: absolute;
    width: auto;
    height: 80%;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    font-family: raleway, sans-serif;
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}


.btn.btn-primary {
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 2px 10px #1f273954;
    transition: all 0.3s ease;
    margin-right: -10px;
    margin-left: 10px;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px 0 8px 20px #1f2739;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: white;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn.active span {
    background: #f97316;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 1024px) {
    .header-content {
        gap: 20px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .logo-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .logo-text h1 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        order: 3;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo {
        flex: 1;
        transform: translateY(0);
    }

    .header.active {
        background: rgba(31, 41, 55, 0.98);
    }

    .nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(31, 41, 55, 0.98);
        backdrop-filter: blur(10px);
        padding: 100px 30px 30px;
        z-index: 1000;
        animation: fadeIn 0.3s ease-out;
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .nav.active .nav-link {
        font-size: 20px;
        padding: 12px;
        display: block;
    }

    .nav.active .nav-link::after {
        bottom: 8px;
    }

    .hero-content {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 12px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--brand-blue);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: zoomBg 20s infinite alternate;
    filter: brightness(0.8);
}

@keyframes zoomBg {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(31, 41, 55, 0.75) 50%,
            rgba(249, 115, 22, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    animation: fadeIn 1s ease-out;
    padding: 100px 0;
    padding-bottom: 0;
    padding-top: 125px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-upper-badge { display: inline-flex; padding: 8px 20px; background: var(--grad-yellow-soft); border: 1px solid rgba(var(--brand-yellow-rgb), 0.3); border-radius: 50px; margin-bottom: 30px; animation: slideDown 1s ease-out forwards; }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-text {
    color: #1f2937;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
    color: #ffffff; /* ensure readable on dark hero */
}

.highlight {
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    position: relative;
    padding: 10px 0;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    color: #ffffff;
    font-size: 16px;
}

.feature-item span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-buttons .btn {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: buttonShine 3s infinite;
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    50%,
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.achievement-counters {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 20px;
    z-index: 1;
}

.counter {
    text-align: center;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.counter:nth-child(1) {
    animation-delay: 0.3s;
}

.counter:nth-child(2) {
    animation-delay: 0.6s;
}

.counter:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-icon {
    font-size: 2rem;
    color: var(--brand-yellow);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(var(--brand-yellow-rgb), 0.5);
}

.counter-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff, var(--brand-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.counter-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Wave Shape Divider */
.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(1px);
}

.wave-shape svg {
    width: 100%;
    height: 120px;
    display: block;
    filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.1));
}

/* Floating Scroll Button */



/* Section Styles */
section {
    padding: 100px 0;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #f9fafb;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-bottom: 80px;
}

.service-block {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr;
    align-items: center;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.service-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.service-block.reverse .service-content {
    order: 2;
}

.service-block.reverse .service-image {
    order: 1;
}

.service-content {
    padding: 60px;
}

/* Service item header container */
.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 2rem;
    color: #1f2937; /* solid color for readability */
    margin: 0;
}
/* Service icon container */
.service-icon {
    height: 70px;
    width: 70px;
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.service-icon i {
    font-size: 28px;
    color: white;
}

/* Keep service headers solid for readability */

.service-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 1rem;
    padding: 10px 20px;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.service-features i {
    color: #1f2937;
    font-size: 14px;
}

.service-image {
    height: 100%;
    position: relative;
    overflow: hidden;
    max-height: 650px;
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.05);
}

/* Guarantees */
.guarantees {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--brand-blue);
}

.guarantees-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 0;
}

.guarantees-bg img {
    position: absolute;
    width: 100%;
    object-fit: contain;
    z-index: 3;
    opacity: 0.5;
}

.guarantees-bg .guarantees-overlay {
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, black, white);
}

.guarantees-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.guarantees-header h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.guarantees-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    z-index: 15;
}

.guarantee-item:hover {
    background: linear-gradient(45deg, #0000001f, #ffffff45, transparent);
    box-shadow: 0 0 5px 2px #5252523d;
}

.guarantee-item i {
    color: #1f2937;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.guarantee-item span {
    color: #374151;
    line-height: 1.2;
}

.guarantees-cta {
    text-align: center;
    position: relative;
}

.guarantees-cta a {
    border-radius: 25px !important;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 25px;
}

.about-text p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.value-item {
    padding-left: 15px;
    border-left: 3px solid #1f2937;
}

.value-item h4 {
    color: #1f2937;
    margin-bottom: 10px;
}

.value-item p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.key-points {
    display: flex;
    gap: 25px;
    white-space: nowrap;
    flex-wrap: wrap;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.key-point i {
    color: #1f2937;
    font-size: 16px;
}

.key-point span {
    color: #374151;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #1f2739;
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
}

.experience-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    border-radius: 24px;
    margin-bottom: 80px;
    justify-content: space-between;
}

.stat-card {
    text-align: center;
    color: #1f2937;
    border-bottom: 3px solid var(--brand-blue);
    padding: 30px 0;
}

.stat-card::before {
    content: "";
    position: absolute;
    left: 50%;
    translate: -50% 0;
    bottom: -8px;
    width: 15px;
    height: 15px;
    background: var(--brand-blue);
    rotate: 45deg;

}

.stat-card:last-of-type {
    border-right: 0;
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.stat-card .stat-icon i {
    font-size: 24px;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Mission Statement */
.mission-statement {
    text-align: center;
}

.mission-statement blockquote {
    font-size: 1.75rem;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 30px;
    line-height: 1.4;
    margin-left: auto;
    margin-right: auto;
}

.mission-statement cite {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
    font-style: normal;
}

/* Portfolio Section */
.portfolio {
    background: #f9fafb;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: none;
    background: white;
    color: #6b7280;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.25px;
    font-family: raleway,sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: #F59E0B;
    color: white;
    box-shadow: 0 2px 5px #1f293752;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 420px); /* fixed card width ~ 3-up size */
    justify-content: center; /* center remaining space */
    gap: 40px;
    margin-bottom: 80px;
    align-items: stretch;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 420px; /* match grid column width */
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-images {
    position: relative;
    height: 300px; /* keep consistent media height */
    overflow: hidden;
}

.before-after {
    display: flex;
    height: 100%;
}

.before,
.after {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.before img,
.after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .before img,
.portfolio-card:hover .after img {
    transform: scale(1.05);
}

.label {
    position: absolute;
    top: 15px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9999px; /* pill */
    color: white;
    letter-spacing: .5px;
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
}

.before-label {
    left: 15px;
    background: var(--brand-blue);
    border-color: rgba(var(--brand-blue-rgb), .4);
}

.after-label {
    right: 15px;
    background: var(--grad-yellow);
    color: #0b1b2b;
    border-color: rgba(var(--brand-yellow-rgb), .5);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--grad-yellow);
    color: #0b1b2b;
    padding: 12px 24px;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(var(--brand-yellow-rgb), 0.35), 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--brand-yellow-rgb), 0.45), 0 3px 8px rgba(0,0,0,0.2);
}

.portfolio-info {
    padding: 30px;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: #6b7280;
    margin: 0;
}

.portfolio-cta {
    background: white;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.portfolio-cta h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.portfolio-cta p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    background: var(--brand-blue);
    padding: 40px;
    border-radius: 20px;
}

.testimonial-stats .stat-item {
    text-align: center;
    position: relative;
}

.testimonial-stats .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.testimonial-stats .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 41, 55, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 41, 55, 0.1);
    border-color: var(--brand-blue);
}

.quote-icon {
    margin-bottom: 20px;
    position: relative;
    width: 45px;
    height: 45px;
    background: var(--brand-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: absolute;
    top: 40px;
    right: 40px;
}

.rating i {
    color: #1f2937;
    font-size: 16px;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid #1f2937;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.author-location {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-location i {
    color: #1f2937;
    font-size: 12px;
}

.testimonials-cta {
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.testimonials-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.testimonials-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #1f2937;
}

.cta-buttons .btn-primary:hover {
    background: #f9fafb;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #1f2937;
}

/* Contact Section */
.contact {
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    color: #1f2739;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60%;
    height: 3px;
    background: linear-gradient(15deg, #1f2739 40%, #1f273900 90%, #e1ccbc 100%);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: #9aa3b61f;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(117, 94, 54, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(117, 94, 54, 0.05);
}

.contact-card:hover {
    border-color: #755e36;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 94, 54, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(117, 94, 54, 0.2);
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h4 {
    color: #755e36;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #755e36;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details span {
    color: #b48966;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick-actions-container {
    grid-column: 1 / -1;
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    background: rgba(117, 94, 54, 0.03);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: 70px;
}

.quick-actions-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(117, 94, 54, 0.2),
            transparent);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background: transparent;
}

.quick-actions h4 {
    color: #1f2739;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.action-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 0;
    margin-top: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 220px;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glowingIcon {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    }

    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
            0 0 25px rgba(255, 255, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    }
}

@keyframes ringring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes floatingChat {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-3px) rotate(-3deg);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(-3px) rotate(3deg);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shiningBorder {
    0% {
        border-color: rgba(255, 255, 255, 0.2);
    }

    50% {
        border-color: rgba(255, 255, 255, 0.5);
    }

    100% {
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.call-btn {
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(117, 94, 54, 0.15);
    position: relative;
    overflow: hidden;
    animation: pulseRing 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s ease;
}

.call-btn i {
    animation: ringring 3s ease infinite, glowingIcon 2s ease-in-out infinite;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(117, 94, 54, 0.25);
    animation: pulseRing 1s ease-in-out infinite;
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.15);
    position: relative;
    overflow: hidden;
    animation: pulseRing 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s ease;
}

.whatsapp-btn i {
    animation: floatingChat 3s ease infinite, glowingIcon 2s ease-in-out infinite;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: #22c35e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    animation: pulseRing 1s ease-in-out infinite;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    padding: 40px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(117, 94, 54, 0.2);
    color: white;
}

.contact-form h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {

    padding: 20px 35px;
    background: #ffffff;
    color: #1f2739;
    border-radius: 50px;
    width: fit-content;
    margin-left: 0;

}

/* Toggle Switch */
.form-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: rgba(255, 255, 255, 0.4);
}

input:checked+.toggle-slider:before {
    transform: translateX(24px);
}

.toggle-label {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.success-message {
    text-align: center;
    padding: 40px;
    color: #10b981;
}

.success-message i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-message h4 {
    color: #1f2937;
    margin-bottom: 10px;
}

.success-message p {
    color: #6b7280;
    margin: 0;
}

/* Service Areas */
.service-areas {
    background: var(--brand-blue);
    padding: 80px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(31, 39, 57, 0.2);
    position: relative;
    overflow: hidden;
}


.service-areas h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}



.service-areas p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
}

.area-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.5s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.area-item:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: var(--brand-blue);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    position: relative;
    border: 1px solid rgba(var(--brand-yellow-rgb), 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(var(--brand-yellow-rgb), 0.1), transparent);
    transition: 0.5s ease;
}

.footer-main:hover::before {
    left: 100%;
}

.company-info .footer-logo {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    width: 150px;
    position: relative;
    ;
}

.company-info .footer-logo img {
    color: white;
    margin: 0;
    left: 0;
    width: 90%;
}

.company-info .logo-text p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.company-description {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(117, 94, 54, 0.2);
}

.footer-section h4 {
    color: white;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: "";
    position: absolute;
    width: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    background: #d1d5db;
    transition: 0.25s all ease;

}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact .contact-item i {
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact .contact-item p {
    color: #d1d5db;
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
}

.footer-contact .contact-item span {
    color: white;
    font-weight: 600;
}

.footer-services {
    border-top: 1px solid rgba(117, 94, 54, 0.1);
    padding: 40px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    padding: 40px;
    overflow: hidden;
}

.footer-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(117, 94, 54, 0.1), transparent);
    transition: 0.5s ease;

}

.footer-services:hover::before {
    left: 100%;
}

.footer-services h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}



.footer-services-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-services .footer-service-item {

    color: #d1d5db;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(117, 94, 54, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(117, 94, 54, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;

}


.footer-areas {
    border-top: 1px solid rgba(117, 94, 54, 0.1);
    padding: 40px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    padding: 40px;
    overflow: hidden;
}

.footer-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(117, 94, 54, 0.1), transparent);
    transition: 0.5s ease;

}

.footer-areas:hover::before {
    left: 100%;
}



.footer-areas h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}


.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.areas-list div {
    color: #d1d5db;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(117, 94, 54, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.areas-list div:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(117, 94, 54, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(117, 94, 54, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}


.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

}

.copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 30px;
}

.footer-bottom .footer-links a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
    color: #f97316;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    scrollbar-width: none;
}

.modal-header {
    background: var(--brand-blue);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.step-indicator {
    font-size: 14px;
    opacity: 0.9;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-content .quick-actions {
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
}

.progress-bar {
    height: 4px;
    background: rgba(249, 115, 22, 0.3);
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
    display: none;
}

.progress {
    height: 100%;
    background: white;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.modal-body {
    padding: 40px;
}

.modal-body h4 {
    color: #1f2937;
    margin-bottom: 25px;
}

.step-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-option {
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.step-option:hover {
    border-color: #1f2739;
    background: #1f27392e;
}

.step-option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.option-main {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.option-sub {
    font-size: 14px;
    color: #6b7280;
}

.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 20px;
}

.quick-actions {
    display: flex;
    gap: 15px;
}

.quick-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn.call-btn {
    background: #10b981;
    color: white;
}

.quick-btn.call-btn:hover {
    background: #059669;
}

.quick-btn.whatsapp-btn {
    background: #16a34a;
    color: white;
}

.quick-btn.whatsapp-btn:hover {
    background: #15803d;
}

/* Portfolio Modal */
.portfolio-modal-content {
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 41, 55, 0.5) transparent;
}


.portfolio-modal-content .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    z-index: 1;
}

.modal-portfolio-images {
    display: flex;
    height: 400px;
}

.modal-before,
.modal-after {
    flex: 1;
    position: relative;
}

.modal-before img,
.modal-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-before .label,
.modal-after .label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    font-weight: 700;
    border-radius: 8px;
    color: white;
}

.modal-before .label { left: 20px; background: var(--brand-blue); }

.modal-after .label { right: 20px; background: var(--grad-yellow); color:#0b1b2b; }

.modal-portfolio-info {
    padding: 40px;
}

.modal-portfolio-info h3 {
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.modal-portfolio-info p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Quick Quote Button */
.quick-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(15deg, #755e36 20%, #b48966 70%, #e1ccbc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.quick-quote-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

.quick-quote-btn i {
    color: white;
    font-size: 24px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--brand-blue);
    transform: translateY(-2px);
}

.back-to-top i {
    color: white;
    font-size: 18px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.formselect option {

    color: #1f2739;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
        padding: 30px;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        height: 200px;
    }

    .guarantees {
        padding: 40px 20px;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filter {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-cta {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-cards {
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-areas {
        padding: 40px 20px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-quote-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .quick-quote-btn i {
        font-size: 20px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .step-option-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-content {
        padding: 30px 20px;
    }

    .guarantees {
        padding: 30px 15px;
    }

    .stats-section {
        grid-template-columns: 1fr;
        padding: 30px 15px;
    }

    .testimonials-cta {
        padding: 30px 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .service-areas {
        padding: 30px 15px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-main {
        gap: 30px;
    }

    .footer-services,
    .footer-areas {
        padding: 30px 0;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Print Styles */
@media print {

    .header,
    .quick-quote-btn,
    .back-to-top,
    .modal {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero {
        min-height: auto;
        padding: 50px 0;
    }

    section {
        padding: 30px 0;
        page-break-inside: avoid;
    }

    .btn {
        border: 1px solid #333;
        background: none !important;
        color: #333 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn.btn-primary { background: var(--grad-yellow-soft); color: #0b1b2b; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 15px; box-shadow: 0 2px 10px rgba(var(--brand-blue-rgb),0.33); transition: all 0.3s ease; margin-right: -10px; margin-left: 10px; }

    .service-card,
    .testimonial-card,
    .contact-card {
        border: 2px solid #333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-indicator {
        animation: none;
    }

    .scroll-wheel {
        animation: none;
    }

    .spinner {
        animation: none;
    }
}

/* Focus Styles for Accessibility */



/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.quick-quote-modal .modal-content {
    max-width: 750px;
    scrollbar-width: none;
}

.quick-quote-modal .quick-actions {
    flex-direction: row;
}

/* ================= Additional Responsive & Mobile Navigation Enhancements (Appended) ================= */
/* Mid breakpoint adjustments (<=1100px) */
@media (max-width:1100px) {
    .service-block {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 50px 50px 40px;
    }

    .service-image {
        max-height: 420px;
    }

}

/* Refined mobile portfolio spacing overwrite */
@media (max-width:768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Navigation Overlay */
.mobile-nav[hidden] {
    display: none;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1400;
    pointer-events: none;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    transition: opacity .35s ease;
}

.mobile-nav-inner {
    position: relative;
    background: linear-gradient(145deg, #1f2739 5%, #1f2937 50%, #263041 100%);
    width: 100%;
    max-width: 92%;
    margin: 0 auto;
    padding: 100px 26px 50px;
    transform: translateY(-25px) scale(.98);
    opacity: 0;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, .4), 0 10px 25px -5px rgba(0, 0, 0, .25);
    backdrop-filter: blur(8px);
    transition: transform .45s cubic-bezier(.22, .9, .32, 1), opacity .45s ease;
    pointer-events: auto;
}

.mobile-nav[data-open="true"] .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav[data-open="true"] .mobile-nav-inner {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, transform .3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, .15);
    transform: rotate(8deg);
}

.mobile-nav-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-list a {
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .5px;
    text-decoration: none;
    color: #fff;
    position: relative;
    border: 1px solid transparent;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    box-shadow: 0 4px 15px -5px rgba(0, 0, 0, .4);
    backdrop-filter: blur(4px);
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.mobile-nav-list a:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, .2);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-contact a.btn {
    width: 100%;
    font-size: 16px;
}

body.no-scroll {
    overflow: hidden;
    touch-action: none;
}

/* Override legacy nav.active system (now we use dedicated overlay) */
@media (max-width:768px) {
    .nav.active {
        display: none !important;
    }
}

/* Logo scaling refinements */
.logo {
    max-width: 150px;
    max-height: 150px;
}

@media (max-width:1400px) {
    .logo {
        max-width: 140px;
        max-height: 140px;
    }

    .container {
        max-width: 1200px;
    }

    .nav-list {
        gap: 10px;
    }
}

@media (max-width:1200px) {
    .logo {
        max-width: 120px;
        max-height: 120px;
    }

    .container {
        max-width: 1050px !important;
    }

    .header-content {
        gap: 20px;
    }

    .nav-list {
        gap: 5px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1.15rem;

    }

    .section-title {
        font-size: 2.6rem;
    }

    .section-description {
        font-size: 1.15rem;
    }

    .header-content {
        justify-content: center;
        gap: 10px;
    }

    .service-image {
        order: 1;
    }

    .service-content {
        order: 2;
    }

    .experience-badge {
        right: 30px;
        top: -30px;
    }

    .stats-section {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .testimonial-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width:992px) {
    .logo {
        max-width: 115px;
        max-height: 115px;
    }

    .top-bar {
        display: none;
    }

    .header-content {
        justify-content: space-between;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
        padding: 30px;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .section-title {
        font-size: 2.45rem;
    }

    .service-header h3 {
        font-size: 1.9rem;
    }

    .service-icon {
        height: 65px;
        width: 65px;

    }

    .service-icon i {
        font-size: 26px;
    }

    .about-text h3 {
        font-size: 1.9rem;
    }

    .value-item h4 {
        font-size: 1.4rem;
    }

    .stats-section {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .testimonial-stats {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .testimonial-stats .stat-number {
        font-size: 2.5rem;
    }

    .testimonials-cta h3 {
        font-size: 1.9rem;
    }

    .contact-info h3 {
        font-size: 1.9rem;
    }

    .contact-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;

    }

    .contact-card {
        width: 48.5%;
    }
}

@media (max-width:820px) {
    .logo {
        max-width: 100px;
        max-height: 100px;
    }

    .contact-cards {
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
    }
}

@media (max-width:680px) {
    .logo {
        max-width: 85px;
        max-height: 85px;
    }
}

@media (max-width:520px) {
    .logo {
        max-width: 72px;
        max-height: 72px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons .btn-primary {
        margin-left: 0;
        margin-right: 0;
    } 

    .hero-buttons .btn {
        font-size: 17px;
        padding: 16px 32px;
    }
    .hero-features {
        gap: 20px;
    }

    .hero-features .feature-item {
        padding: 8px 16px;
    }

    .hero-features .feature-item span {
        font-size: 0.9rem;
    }

    .service-content {
        padding: 30px 20px 40px;
    }

    .service-icon {
        height: 50px;
        width: 50px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .service-header h3 {
        font-size: 1.7rem;
    }

    .about-text h3 {
        font-size: 1.7rem;
    }

        .testimonials-cta h3 {
        font-size: 1.7rem;
    }

    .contact-info h3 {
        font-size: 1.7rem;
    }

    .contact-details p {
        max-width: 220px;
        word-wrap: break-word;
    }

    .quick-actions .action-buttons {
        flex-direction: column;
    }

    .service-areas h3 {
        font-size: 2.45rem;
    }

    

}

@media (max-width:420px) {
    .logo {
        max-width: 62px;
        max-height: 62px;
    }
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: static;
    height: auto;
}

@media (min-width:1400px) {
    .nav{

        flex: 1;

    }
}

/* Contact Map */
.contact-map{
    background:#fff;
    border:1px solid rgba(31,41,55,.08);
    border-radius:20px;
    padding:24px;
    margin:20px 0 60px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}
.contact-map h3{
    margin-bottom:10px;
    color:#1f2937;
}
.contact-map-address{
    color:#6b7280;
    margin-bottom:16px;
}
.contact-map-address i{ color:#1f2937; margin-right:8px; }
.map-wrapper{
    position:relative;
    width:100%;
    padding-bottom:56.25%; /* 16:9 */
    background:#f3f4f6;
    border-radius:16px;
    overflow:hidden;
}
.map-embed{
    position:absolute;
    top:0; left:0; width:100%; height:100%; border:0;
}
.map-actions{ margin-top:16px; text-align:center; }

/* ==========================================
     Brand Theme Overrides (Logo-aligned colors)
     ========================================== */

/* Header */
.header.scrolled{
    background: rgba(13,59,102,0.95) !important; /* var(--brand-blue) */
}

/* Primary buttons */
.btn-primary{
    background: var(--grad-yellow) !important;
    color: #0b1b2b !important;
    box-shadow: 0 4px 15px rgba(var(--brand-yellow-rgb),0.35) !important;
}
.btn-primary:hover{
    background: linear-gradient(135deg, var(--brand-yellow-600), var(--brand-yellow)) !important;
    box-shadow: 0 8px 25px rgba(var(--brand-yellow-rgb),0.45) !important;
}
.btn.btn-primary{
    background: var(--grad-yellow-soft) !important;
    color:#0b1b2b !important;
    box-shadow: 0 2px 10px rgba(var(--brand-blue-rgb),0.25) !important;
}

/* Hero */
.hero{ background: var(--grad-blue) !important; }
.hero-overlay{
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(var(--brand-blue-rgb),0.65) 55%, rgba(var(--brand-yellow-rgb),0.55) 100%) !important;
}
.highlight{
    background: var(--grad-yellow-soft) !important;
    -webkit-background-clip: text; background-clip: text !important; -webkit-text-fill-color: transparent;
}

/* Services */
.service-icon{ background: var(--grad-yellow-soft) !important; box-shadow: 0 10px 30px rgba(var(--brand-yellow-rgb),0.25) !important; }
.service-header h3{
    color: #1f2937 !important;
}

/* Guarantees */
.guarantees{ border:1px solid rgba(13,59,102,0.5) !important; }
.guarantee-item i{ color: var(--brand-blue) !important; }
.guarantees-cta a{ border-radius:25px !important; }

/* Testimonials CTA */
.testimonials-cta{ background: linear-gradient(15deg, var(--brand-blue) 10%, var(--brand-blue-700) 55%, var(--brand-blue) 100%) !important; }

/* Contact */
.contact-form{ background: linear-gradient(15deg, var(--brand-blue) 15%, var(--brand-blue-700) 70%, var(--brand-blue) 100%) !important; box-shadow: 0 15px 35px rgba(var(--brand-blue-rgb),0.25) !important; }
.contact-details h4, .contact-details p{ color: var(--brand-blue) !important; }
.contact-details span{ color: var(--brand-blue-500) !important; }
.quick-actions-container{ background: rgba(13,59,102,0.06) !important; }
.call-btn{ background: var(--grad-yellow-soft) !important; box-shadow: 0 5px 15px rgba(var(--brand-yellow-rgb),0.22) !important; }

/* Responsive fallback for portfolio fixed cards */
@media (max-width: 1380px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, 360px);
    }
    .portfolio-card { width: 360px; }
}
@media (max-width: 1140px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, 320px);
    }
    .portfolio-card { width: 320px; }
}
@media (max-width: 740px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .portfolio-card {
        width: 100%;
    }
}