:root {
    --bg: #ffffff;
    --card: #ffffff;
    --elev: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --brand: #22c55e; /* green */
    --brand-600: #16a34a;
    --brand-700: #15803d;
    --accent: #f59e0b; /* orange */
    --accent-600: #d97706;
    --border: #e5e7eb;
    --light: #f3f4f6; /* grey */
    --white: #ffffff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

.container { max-width: 1150px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--muted); }
a { color: inherit; }
a:hover { color: var(--accent-600); }
html { scroll-behavior: smooth; }

/* Top bar */
.top-bar { 
    background: #0b0b0b; 
    color: #ffffff; 
    font-size: 14px; 
    border-bottom: 1px solid #111111;
}
.top-bar__content { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 10px 20px; 
    gap: 10px; 
}
.top-bar__left { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    color: rgba(255,255,255,.9); 
}
.top-bar__phone i, .top-bar__email i { 
    color: rgba(255,255,255,.8); 
    margin-right: 8px; 
}
.top-bar__whatsapp { 
    color: rgba(255,255,255,.9); 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    transition: all 0.3s ease; 
    padding: 6px 12px; 
    border-radius: 6px; 
    background: rgba(37, 211, 102, 0.1); 
    border: 1px solid rgba(37, 211, 102, 0.3);
}
.top-bar__whatsapp:hover { 
    color: #ffffff; 
    background: rgba(37, 211, 102, 0.2); 
    transform: translateY(-1px);
}
.top-bar__whatsapp i { 
    color: #25d366; 
    margin-right: 8px; 
    font-size: 16px;
}
.top-bar__right { 
    display: flex; 
    gap: 12px; 
    align-items: center;
}
.social-link { 
    color: rgba(255,255,255,.8); 
    transition: all 0.3s ease; 
    padding: 6px;
    border-radius: 6px;
}
.social-link:hover { 
    color: #ffffff; 
    background: rgba(255,255,255,.1);
    transform: translateY(-1px);
}

/* Header */
.site-header { 
    position: sticky; 
    top: 0; 
    z-index: 50; 
    background: rgba(255,255,255,.95); 
    backdrop-filter: blur(15px); 
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 70px; 
    padding: 0 20px;
}
.logo { 
    color: var(--text); 
    text-decoration: none; 
    font-weight: 700; 
    letter-spacing: .5px; 
    font-size: 18px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo:hover {
    color: var(--brand);
}
.logo img {
    height: 40px;
    width: auto;
    display: block;
}
.logo span { 
    color: var(--brand); 
    font-weight: 600;
}
.primary-nav { 
    display: flex; 
    align-items: center;
}
.menu { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.menu-item a { 
    position: relative; 
    text-decoration: none; 
    color: var(--text); 
    padding: 12px 16px; 
    border-radius: 8px; 
    display: inline-block; 
    transition: all 0.3s ease; 
    font-weight: 500;
}
.menu-item a:after { 
    content: ""; 
    position: absolute; 
    left: 12px; 
    right: 12px; 
    bottom: 8px; 
    height: 2px; 
    background: transparent; 
    transition: background-color .3s ease; 
    border-radius: 2px; 
}
.menu-item a:hover { 
    color: var(--brand); 
    background: rgba(34,197,94,.08);
}
.menu-item a:hover:after { 
    background: var(--brand); 
}
.menu-item.active > a { 
    color: var(--brand); 
    background: rgba(34,197,94,.1);
}
.menu-item.active > a:after { 
    background: var(--brand); 
}
.menu-item--has-children { 
    position: relative; 
}
.submenu-toggle { 
    background: transparent; 
    border: none; 
    color: var(--muted); 
    cursor: pointer; 
    padding: 8px; 
    transition: all 0.3s ease;
}
.sub-menu { 
    position: absolute; 
    top: 110%; 
    left: 0; 
    min-width: 240px; 
    background: var(--white); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    padding: 12px; 
    display: none; 
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    backdrop-filter: blur(10px);
}
.menu-item--has-children:hover > .sub-menu { 
    display: block; 
}
.sub-menu li a { 
    width: 100%; 
    display: block; 
    padding: 12px 16px; 
    color: var(--text); 
    border-radius: 8px; 
    transition: all 0.3s ease;
    font-weight: 500;
}
.sub-menu li a:hover { 
    background: var(--light); 
    color: var(--brand);
}
.menu-item--has-children:hover > .submenu-toggle { 
    color: var(--brand); 
    transform: translateY(1px) rotate(180deg); 
    transition: transform .3s ease, color .3s ease; 
}
.nav-toggle { 
    display: none; 
    background: transparent; 
    border: 1px solid var(--border); 
    color: var(--text); 
    border-radius: 8px; 
    padding: 10px 12px; 
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-toggle:hover {
    background: var(--light);
    border-color: var(--brand);
    color: var(--brand);
}

/* Hero */
.hero { padding: 72px 0 40px; }
.hero__inner { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 24px; }
.hero__content h1 { font-size: 32px; margin: 0 0 12px; }
.hero__content p { color: var(--muted); margin: 0 0 18px; }
.hero__actions { display: flex; gap: 12px; }
.hero__image { height: 320px; border-radius: 16px; background: radial-gradient(1200px 400px at -10% -20%, rgba(34,197,94,.25), rgba(245,158,11,.15) 30%, transparent 60%), linear-gradient(180deg, var(--card), var(--bg)); border: 1px solid var(--border); background-size: cover; background-position: center; }

.hero--single .hero__inner { grid-template-columns: 1fr; }
.hero--single { 
    background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url('../../images/office photo.jpeg');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    min-height: 420px;
}
.hero--single .hero__inner { grid-template-columns: 1.3fr 1fr; min-height: 420px; align-items: center; gap: 24px; }
.hero--single .hero__content { text-align: center; margin: 0 auto; max-width: 900px; }
.hero--single .hero__content h1 { font-size: 36px; line-height: 1.1; letter-spacing: .02em; text-transform: uppercase; color: #ffffff; }
.hero--single .hero__content p { color: #e5e7eb; font-size: 18px; margin-top: 8px; }
.hero--single .hero__actions { justify-content: center; }
.hero--single .btn--secondary { color: #ffffff; border-color: rgba(255,255,255,.6); }
.hero--single .btn--secondary:hover { background: rgba(255,255,255,.12); }
.hero--single .hero__content h1 { color: #ffffff; }
.hero--single .hero__content p { color: #e5e7eb; }
.hero--single .btn--secondary { color: #ffffff; border-color: rgba(255,255,255,.6); }
.hero--single .btn--secondary:hover { background: rgba(255,255,255,.12); }

/* Hero aside (About block inside hero) */
.hero-aside { background: rgba(255,255,255,.96); color: #0f172a; border: 1px solid var(--border); border-radius: 14px; padding: 18px; backdrop-filter: saturate(1.1) blur(2px); }
.hero-aside h2 { margin: 0 0 8px; color: #0f172a; font-size: 20px; }
.hero-aside p { color: #334155; }
.hero-aside .list-checked i { color: var(--brand-700); }
.hero-aside .btn { margin-top: 6px; }

/* Hero slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-slide.is-exiting {
    opacity: 0;
    z-index: 1;
}
.hero-slide .hero__inner {
    grid-template-columns: 1fr;
    min-height: 420px;
    align-items: center;
    gap: 24px;
}
.hero-slide .hero__content {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroContentEntrance 1s ease-out 0.3s forwards;
}

.hero-slide .hero__content h1 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(40px);
    animation: heroTitleEntrance 1.2s ease-out 0.5s forwards;
}

.hero-slide .hero__content p {
    color: #e5e7eb;
    font-size: 18px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextEntrance 1s ease-out 0.7s forwards;
}

.hero-slide .hero__actions {
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroActionsEntrance 1s ease-out 0.9s forwards;
}
.hero-slide .btn--secondary {
    color: #ffffff;
    border-color: rgba(255,255,255,.6);
}
.hero-slide .btn--secondary:hover {
    background: rgba(255,255,255,.12);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    opacity: 0;
    animation: heroArrowEntrance 0.8s ease-out 1.2s forwards;
}

.hero-arrow:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    color: var(--brand);
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.95);
}
.hero-arrow--prev { left: 20px; }
.hero-arrow--next { right: 20px; }
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    animation: heroDotsEntrance 0.8s ease-out 1.4s forwards;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.hero-dot:hover::before {
    width: 20px;
    height: 20px;
}

.hero-dot.is-active {
    background: var(--brand);
    border-color: var(--brand);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(34,197,94,0.5);
}

/* Sections */
.section { padding: 56px 0; }
.section--light { background: var(--light); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: start; }
.checklist { padding-left: 18px; }
.checklist li { margin: 8px 0; }

/* Headings */
h1 { font-size: 32px; line-height: 1.2; letter-spacing: -0.01em; }
h2 { font-size: 24px; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 18px; line-height: 1.35; }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.section h2 + p.muted { margin-top: -4px; }

/* Cards */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.08); border-color: #d1d5db; }
.card__icon { font-size: 28px; color: var(--brand); margin-bottom: 8px; }
.card__link { color: var(--accent); text-decoration: none; }
.card__link:hover { text-decoration: underline; }

/* Feature panel */
.feature-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feature-panel__item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; display: grid; gap: 4px; justify-items: center; }
.feature-panel .stat { font-size: 26px; font-weight: 700; color: var(--text); }
.feature-panel .label { color: var(--muted); font-size: 13px; }

/* About (home) */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 16px 0 24px 0;
    line-height: 1.2;
}

.section-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
}

.about-content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* Statistics Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--light), #f8fafc);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

.value-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.about-actions .btn {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 160px;
}

.about-actions .btn--primary {
    background: var(--brand);
    color: #ffffff;
    border: 2px solid var(--brand);
}

.about-actions .btn--primary:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}

.about-actions .btn--secondary {
    background: #ffffff;
    color: var(--text);
    border: 2px solid var(--border);
}

.about-actions .btn--secondary:hover {
    background: var(--light);
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.about-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-highlight {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.about-highlight h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
}

.about-highlight p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

/* Highlight Features */
.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose-us {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.why-choose-us h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin: 0 0 48px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

/* CTA */
.cta { padding: 44px 0; background: radial-gradient(600px 200px at 10% -10%, rgba(34,197,94,.15), transparent 60%), var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* Footer */
.site-footer { background: #0b0b0b; border-top: 1px solid #111; color: #e5e7eb; }
.site-footer a { color: #cbd5e1; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer h4 { color: #ffffff; }
.site-footer ul { list-style: none; padding: 0; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr; gap: 24px; padding: 36px 0 18px; justify-content: start; padding-left: 40px; }
.footer__bottom { display: flex; align-items: center; justify-content: center; border-top: 1px solid #111; padding: 14px 0 24px; color: #9ca3af; }
.footer-socials a { color: #9ca3af; margin-right: 10px; }
.footer-socials a:hover { color: #ffffff; }

/* Footer copyright is now centered on all screen sizes */
.logo--footer { display: inline-block; margin-bottom: 8px; color: #ffffff; }

/* Footer cookie settings link */
.cookie-settings-link {
    color: #9ca3af;
    text-decoration: underline;
    font-size: 14px;
}
.cookie-settings-link:hover {
    color: #ffffff;
}


/* Floating WhatsApp button */
.whatsapp-floating {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366; /* WhatsApp green */
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.18);
    z-index: 2000;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-floating:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37,211,102,0.24);
}
.whatsapp-floating .fab-icon {
    font-size: 20px;
}

@media (max-width: 480px) {
    .whatsapp-floating { width: 48px; height: 48px; right: 12px; bottom: 12px; }
    .whatsapp-floating .fab-icon { font-size: 18px; }
}

/* Floating Cookie Icon */
.cookie-icon-floating {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f59e0b; /* Cookie orange/amber */
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(245,158,11,0.18);
    z-index: 1999;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
}
.cookie-icon-floating:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(245,158,11,0.24);
}
.cookie-icon-floating .cookie-icon {
    font-size: 24px;
}

@media (max-width: 480px) {
    .cookie-icon-floating { 
        width: 48px; 
        height: 48px; 
        left: 12px; 
        bottom: 12px; 
    }
    .cookie-icon-floating .cookie-icon { 
        font-size: 20px; 
    }
}

/* Blog */
.post { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.post h3 a { color: var(--text); text-decoration: none; }
.post h3 a:hover { text-decoration: underline; }

/* Services */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; transition: transform .2s ease, box-shadow .2s ease; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.price-card--featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand) inset; }
.price { font-size: 24px; color: var(--text); margin-top: 6px; }

/* Contact */
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: grid; gap: 6px; }
label { color: var(--muted); font-size: 14px; }
input, textarea { background: var(--white); color: var(--text); border: 1px solid var(--border); border-radius: 10px; padding: 10px; font-family: inherit; }
input:focus, textarea:focus { outline: 2px solid var(--brand-700); border-color: var(--brand-700); }
.contact-list { list-style: none; padding-left: 0; }
.contact-list li { margin: 10px 0; color: var(--muted); }
.contact-list i { color: var(--brand); margin-right: 8px; }

/* Buttons */
.btn { 
    display: inline-block; 
    text-decoration: none; 
    border-radius: 10px; 
    padding: 12px 20px; 
    font-weight: 600; 
    font-size: 15px;
    border: 2px solid transparent; 
    transition: all 0.3s ease; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
}
.btn--primary { 
    background: var(--brand); 
    color: #ffffff; 
    border-color: var(--brand);
}
.btn--primary:hover { 
    background: var(--brand-600); 
    border-color: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}
.btn--secondary { 
    background: #ffffff; 
    color: var(--text); 
    border-color: var(--border);
}
.btn--secondary:hover { 
    background: var(--light); 
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--accent { 
    background: var(--accent); 
    color: #ffffff; 
    border-color: var(--accent);
}
.btn--accent:hover { 
    background: var(--accent-600); 
    border-color: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn--inverse { 
    background: transparent; 
    color: var(--white); 
    border: 2px solid var(--brand); 
}
.btn--inverse:hover { 
    background: rgba(34,197,94,.1); 
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}
.btn:active { transform: translateY(0px); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(34,197,94,.35); }

/* Logos grid */
.logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logo-tile { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; color: var(--muted); }

/* Utilities */
ul { margin: 0; }
h1, h2, h3, h4 { margin: 0 0 10px; }
p { margin: 0 0 10px; }

/* Responsive */
@media (max-width: 900px) {
    .hero__inner, .split { grid-template-columns: 1fr; }
    .grid-3, .pricing, .logos { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .hero--single .hero__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .grid-3, .pricing, .logos, .footer__grid { grid-template-columns: 1fr; }
    .footer__grid { text-align: left; padding-left: 20px; }
    .footer__grid h4 { text-align: left; }
    .footer__grid ul { text-align: left; }
    .footer__bottom { text-align: center; }
    .footer__bottom p { text-align: center; margin: 0; }
    .nav-toggle { display: inline-flex; }
    .primary-nav { 
        display: none; 
        position: absolute; 
        top: 70px; 
        right: 0; 
        left: 0; 
        background: var(--white); 
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 20px rgba(0,0,0,.1);
        backdrop-filter: blur(15px);
    }
    .primary-nav.is-open {
        display: block;
    }
    .menu { 
        flex-direction: column; 
        align-items: stretch; 
        padding: 16px; 
        gap: 4px;
    }
    .menu-item a {
        padding: 14px 16px;
        border-radius: 8px;
        margin: 2px 0;
    }
    .sub-menu { 
        position: static; 
        display: none; 
        border: none; 
        background: transparent; 
        padding: 8px 0 8px 16px; 
        box-shadow: none;
        margin-top: 8px;
    }
    .menu-item--has-children.open > .sub-menu { 
        display: block; 
    }
    .form-row { grid-template-columns: 1fr; }
    
    /* Mobile Heading Size Reductions */
    h1 { font-size: 26px; }
    h2 { font-size: 20px; }
    h3 { font-size: 16px; }
    h4 { font-size: 13px; }
    
    .section-header h2 { font-size: 24px; }
    .about-content-left h2 { font-size: 24px; }
    .about-intro h3 { font-size: 20px; }
    .section-header.text-center h2 { font-size: 22px; }
    .hero__content h1 { font-size: 26px; }
    .contact-form-section h2 { font-size: 20px; }
    .hero-aside h2 { font-size: 18px; }
    .section-lead { font-size: 14px; }
    .page-hero h1 { font-size: 24px; }
    .page-hero p { font-size: 14px; }
    .why-choose-us h2 { font-size: 20px; }
    .catalogue-intro h2 { font-size: 22px; }
    .section-content h2 { font-size: 22px; }
    .objectives-section h2 { font-size: 24px; }
    .mission-vision-section h2 { font-size: 24px; }
    .about-cta h2 { font-size: 24px; }
    .services-cta h2 { font-size: 22px; }
    .services-header h2 { font-size: 24px; }
    .about-hero-header h2 { font-size: 22px; }
    .pricing-header h2 { font-size: 22px; }
    .about-content h2 { font-size: 20px; }
    
    .hero--single .hero__content h1 { font-size: 24px; }
    .hero--single .hero__actions { flex-direction: column; align-items: center; }
    
    /* Hero Slider Mobile Styles */
    .hero-slide .hero__content h1 { font-size: 24px; }
    .hero-slide .hero__actions { flex-direction: column; align-items: center; }
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
    .hero-arrow--prev { left: 10px; }
    .hero-arrow--next { right: 10px; }
    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }
    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

/* Home additions */
.brand-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.brand-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.brand-strip__title { color: var(--muted); font-weight: 600; }
.brand-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-badge { border: 1px solid var(--border); color: var(--muted); border-radius: 999px; padding: 6px 10px; font-size: 12px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 14px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; position: relative; }
.step-number { position: absolute; top: -10px; left: -10px; width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: #052e16; display: grid; place-items: center; font-weight: 700; }

/* Stepper */
.stepper { display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr; align-items: center; gap: 10px; margin-top: 14px; justify-content: start; }
.stepper-step { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 10px; display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center; cursor: pointer; color: var(--text); }
.stepper-step.is-active { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(34,197,94,.15); }
.stepper-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--light); color: var(--brand-700); }
.stepper-label { font-weight: 600; }
.stepper-connector { height: 2px; background: #d1d5db; }
.stepper-panels { border: 1px solid var(--border); border-radius: 12px; background: var(--white); margin-top: 14px; padding: 16px; }
.stepper-panel { display: none; text-align: left; }
.stepper-panel.is-active { display: block; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 14px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.testimonial-card .quote { font-style: italic; }
.testimonial-card .author { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* Testimonial carousel */
.testimonial-carousel { position: relative; margin-top: 14px; }
.tc-track { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 18px; overflow: hidden; scroll-behavior: smooth; }
.tc-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); border: 1px solid var(--border); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--text); cursor: pointer; }
.tc-arrow--prev { left: -10px; }
.tc-arrow--next { right: -10px; }
.tc-dots { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.tc-dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer; }
.tc-dot.is-active { background: var(--brand); }
.tc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--light); border: 1px solid var(--border); display: grid; place-items: center; font-weight: 600; color: var(--muted); }
.stars { color: #f59e0b; }

.latest-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }

@media (max-width: 900px) {
    .steps { grid-template-columns: 1fr 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .stepper { 
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .stepper-step {
        text-align: left;
        justify-self: start;
        max-width: 300px;
        margin: 0;
    }
    
    .stepper-panel {
        text-align: left;
    }
    
    /* Left align the "How it works" heading on mobile */
    .section h2 {
        text-align: left;
    }
    
    /* Override: Keep section-header.text-center centered */
    .section-header.text-center {
        display: block !important;
        text-align: center !important;
    }
    
    .section-header.text-center h2 {
        text-align: center !important;
    }
    
    /* Override: Center FAQ heading on mobile */
    #faq h2,
    #faq h2.text-center {
        text-align: center !important;
    }
}

/* Page hero (used on inner pages) */
.page-hero { 
    padding: 72px 0; 
    background: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url('../../images/office photo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border); 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px 200px at 50% 0%, rgba(34,197,94,.08), transparent 60%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ accordion */
.faqs { 
    display: grid; 
    gap: 10px; 
    margin-top: 14px; 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.faq { 
    background: var(--card); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    overflow: hidden; 
}
.faq > summary { 
    cursor: pointer; 
    padding: 14px 40px 14px 16px; 
    list-style: none; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    position: relative;
}
.faq > summary span {
    text-align: center;
    width: 100%;
}
.faq > summary i {
    position: absolute;
    right: 16px;
    flex-shrink: 0;
}
.faq > summary::-webkit-details-marker { display: none; }
.faq[open] > summary i { transform: rotate(180deg); }
.faq > summary i { transition: transform .2s ease; color: var(--muted); }
.faq__content { 
    padding: 0 16px 14px; 
    color: var(--muted); 
    text-align: center;
}
.faq__content p {
    text-align: center;
}

/* Restructured About Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.about-content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    align-self: flex-start;
}

.about-content-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

.value-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.about-actions .btn {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 160px;
}

.about-actions .btn--primary {
    background: var(--brand);
    color: #ffffff;
    border: 2px solid var(--brand);
}

.about-actions .btn--primary:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}

.about-actions .btn--secondary {
    background: #ffffff;
    color: var(--text);
    border: 2px solid var(--border);
}

.about-actions .btn--secondary:hover {
    background: var(--light);
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.about-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-highlight {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.about-highlight h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
}

.about-highlight p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

/* Highlight Features */
.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose-us {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.why-choose-us h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin: 0 0 48px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
}

.mission-card, .vision-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-600));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.mission-card:hover::before, .vision-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 18px;
}

.card-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.mission-card p, .vision-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.about-cta {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

/* Responsive adjustments for Restructured About section */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-lead {
        font-size: 18px;
    }
    
    .about-intro h3 {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .section-subtitle {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .about-highlight {
        padding: 32px 24px;
    }
    
    .why-choose-us h3 {
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .about-grid {
        gap: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-lead {
        font-size: 16px;
    }
    
    .about-intro h3 {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    
    .value-icon {
        margin: 0 auto 16px;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
    }
    
    .about-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    }
    
    .about-actions .btn--primary {
        background: var(--brand);
        color: #ffffff;
        border: 2px solid var(--brand);
    }
    
    .about-actions .btn--secondary {
        background: #ffffff;
        color: var(--text);
        border: 2px solid var(--border);
    }
    
    .section-subtitle {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .about-highlight {
        padding: 24px 20px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-us {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .why-choose-us h3 {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    
    .about-highlight h3 {
        font-size: 20px;
    }
}

/* Professional Services Section Styles */
.services-header {
    margin-bottom: 48px;
    text-align: center;
}

.services-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.services-header .lead {
    font-size: 20px;
    color: var(--muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px auto;
    color: white;
    font-size: 28px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.service-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
}

.service-features i {
    color: var(--brand);
    font-size: 12px;
    width: 16px;
    height: 16px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

.services-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

/* Enhanced styling for Get Custom Quote button */
.services-cta .btn--secondary {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
    font-weight: 600;
    padding: 14px 28px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

    .services-cta .btn--secondary:hover {
        background: var(--brand-600);
        border-color: var(--brand-600);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    }

    /* Enhanced styling for Explore Our Services section */
    .services-cta h2 {
        font-size: 24px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 16px;
    }

    .services-cta .lead {
        font-size: 18px;
        color: var(--muted);
        margin-bottom: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-cta .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-cta .cta-buttons .btn {
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .services-cta .cta-buttons .btn--primary {
        background: var(--brand);
        border-color: var(--brand);
        color: white;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    .services-cta .cta-buttons .btn--primary:hover {
        background: var(--brand-600);
        border-color: var(--brand-600);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    }

    .services-cta .cta-buttons .btn--secondary {
        background: transparent;
        border-color: var(--brand);
        color: var(--brand);
    }

    .services-cta .cta-buttons .btn--secondary:hover {
        background: var(--brand);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    }

/* Responsive adjustments for Services section */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-header h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .services-header .lead {
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .services-header .lead {
        text-align: center;
    }
    
    .service-card {
        padding: 24px;
    }
    
         .services-cta {
         flex-direction: column;
         align-items: center;
     }
 }

 /* Contact Page Styles */
 
 /* Contact Cards */
 .contact-cards {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     margin-bottom: 48px;
 }

 .contact-card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 32px;
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .contact-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 }

 .contact-card__icon {
     width: 64px;
     height: 64px;
     background: linear-gradient(135deg, var(--brand), var(--brand-600));
     border-radius: 50%;
     display: grid;
     place-items: center;
     margin: 0 auto 20px;
     color: white;
     font-size: 24px;
 }

 .contact-card h3 {
     font-size: 20px;
     font-weight: 600;
     color: var(--text);
     margin-bottom: 12px;
 }

 .contact-card p {
     color: var(--muted);
     margin-bottom: 16px;
     line-height: 1.5;
 }

 .contact-link {
     color: var(--brand);
     text-decoration: none;
     font-weight: 600;
     font-size: 16px;
     transition: color 0.3s ease;
 }

 .contact-link:hover {
     color: var(--brand-600);
 }

 /* Consultation Form */
 .consultation-header {
     margin-bottom: 48px;
 }

 .consultation-header h2 {
     font-size: 36px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 16px;
 }

 .consultation-header .lead {
     font-size: 18px;
     color: var(--muted);
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .consultation-form-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .consultation-form {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.08);
 }

 .form-section {
     margin-bottom: 32px;
 }

 .form-section h3 {
     font-size: 20px;
     font-weight: 600;
     color: var(--text);
     margin-bottom: 20px;
     padding-bottom: 12px;
     border-bottom: 2px solid var(--light);
 }

 .form-field {
     margin-bottom: 20px;
 }

 .form-field label {
     display: block;
     color: var(--text);
     font-weight: 500;
     margin-bottom: 8px;
     font-size: 14px;
 }

 .form-field input,
 .form-field textarea,
 .form-field select {
     width: 100%;
     padding: 12px 16px;
     border: 1px solid var(--border);
     border-radius: 8px;
     font-family: inherit;
     font-size: 16px;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
 }

 .form-field input:focus,
 .form-field textarea:focus,
 .form-field select:focus {
     outline: none;
     border-color: var(--brand);
     box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
 }

 .form-field textarea {
     resize: vertical;
     min-height: 120px;
 }

/* Site contact form (restored mailto form) */
.site-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
    max-width: 100%;
}

.site-contact-form .form-row {
    display: block;
    margin: 0;
}

.site-contact-form input,
.site-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    font-size: 15px;
    color: var(--text);
}

.site-contact-form label.form-row {
    display: block;
    margin-bottom: 6px;
}

/* Right-side scroll-to-top button */
.scroll-up {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    background: var(--brand);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    color: #fff;
    z-index: 1200;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
}

.scroll-up.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-up i {
    font-size: 18px;
    color: #fff;
}

.scroll-up:hover {
    box-shadow: 0 10px 30px rgba(34,197,94,0.18);
    transform: translateY(-2px);
}

.scroll-up:active {
    transform: translateY(0);
}

/* Slightly higher on large screens to avoid footer overlap and position above WhatsApp */
@media (min-width: 1200px) {
    .scroll-up { bottom: 88px; right: 28px; }
}

@media (max-width: 640px) {
    .scroll-up { right: 12px; bottom: 80px; width: 44px; height: 44px; }
}

.site-contact-form textarea {
    min-height: 140px;
    resize: vertical;
    grid-column: 1 / -1; /* textarea spans full width */
}

.site-contact-form .btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
}

/* stacked layout on small screens */
@media (max-width: 760px) {
    .site-contact-form {
        grid-template-columns: 1fr;
    }

    .site-contact-form .btn {
        justify-self: stretch;
        width: 100%;
    }
}

 .radio-group {
     display: flex;
     gap: 24px;
     flex-wrap: wrap;
 }

 .radio-option {
     display: flex;
     align-items: center;
     gap: 8px;
     cursor: pointer;
     font-weight: 500;
 }

 .radio-option input[type="radio"] {
     display: none;
 }

 .radio-custom {
     width: 18px;
     height: 18px;
     border: 2px solid var(--border);
     border-radius: 50%;
     position: relative;
     transition: border-color 0.3s ease;
 }

 .radio-option input[type="radio"]:checked + .radio-custom {
     border-color: var(--brand);
 }

 .radio-option input[type="radio"]:checked + .radio-custom::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 8px;
     height: 8px;
     background: var(--brand);
     border-radius: 50%;
 }

 .btn--large {
     padding: 16px 32px;
     font-size: 16px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 /* Office Information */
 .office-info {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: start;
 }

 .office-details h2 {
     font-size: 32px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 16px;
 }

 .office-details p {
     color: var(--muted);
     font-size: 18px;
     line-height: 1.6;
     margin-bottom: 32px;
 }

 .office-card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0,0,0,0.08);
 }

 .office-card__header {
     background: linear-gradient(135deg, var(--brand), var(--brand-600));
     color: white;
     padding: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .office-card__header i {
     font-size: 24px;
 }

 .office-card__header h3 {
     font-size: 18px;
     font-weight: 600;
     margin: 0;
 }

 .office-card__content {
     padding: 24px;
 }

 .office-item {
     display: flex;
     align-items: flex-start;
     gap: 16px;
     margin-bottom: 20px;
 }

 .office-item:last-child {
     margin-bottom: 0;
 }

 .office-item i {
     color: var(--brand);
     font-size: 18px;
     margin-top: 2px;
     flex-shrink: 0;
 }

 .office-item a {
     color: var(--brand);
     text-decoration: none;
     font-weight: 500;
 }

 .office-item a:hover {
     text-decoration: underline;
 }

 /* Map Placeholder */
 .map-placeholder {
     background: var(--light);
     border: 2px dashed var(--border);
     border-radius: 16px;
     padding: 48px;
     text-align: center;
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }

 .map-placeholder i {
     font-size: 48px;
     color: var(--muted);
     margin-bottom: 16px;
 }

 .map-placeholder h3 {
     font-size: 20px;
     font-weight: 600;
     color: var(--text);
     margin-bottom: 8px;
 }

 .map-placeholder p {
     color: var(--muted);
     margin-bottom: 24px;
 }

 /* Social Section */
 .social-section h2 {
     font-size: 32px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 16px;
 }

 .social-section .lead {
     font-size: 18px;
     color: var(--muted);
     margin-bottom: 32px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 24px;
     flex-wrap: wrap;
 }

 .social-link-card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 20px 24px;
     text-decoration: none;
     color: var(--text);
     display: flex;
     align-items: center;
     gap: 12px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     min-width: 140px;
     justify-content: center;
 }

 .social-link-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 20px rgba(0,0,0,0.1);
     color: var(--brand);
 }

 .social-link-card i {
     font-size: 20px;
 }

 .social-link-card span {
     font-weight: 500;
 }

 /* Contact FAQ */
 .contact-faq h2 {
     font-size: 32px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 32px;
     text-align: center;
 }

 /* Responsive adjustments for Contact Page */
 @media (max-width: 900px) {
     .contact-cards {
         grid-template-columns: repeat(2, 1fr);
     }
     
     .office-info {
         grid-template-columns: 1fr;
         gap: 32px;
     }
     
     .radio-group {
         flex-direction: column;
         gap: 16px;
     }
 }

 @media (max-width: 640px) {
     .contact-cards {
         grid-template-columns: 1fr;
     }
     
     .consultation-form {
         padding: 24px;
     }
     
     .consultation-header h2 {
         font-size: 28px;
     }
     
     .office-details h2 {
         font-size: 28px;
     }
     
     .social-links {
         flex-direction: column;
         align-items: center;
     }
     
     .social-link-card {
         width: 100%;
         max-width: 200px;
     }
     
     .contact-faq h2 {
         font-size: 28px;
     }
 }

 /* Contact Page Layout */
 .contact-layout {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 48px;
     align-items: start;
 }

 /* Contact Information */
 .contact-info {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 32px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.08);
 }

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    text-align: left;
 }

 .contact-item {
     margin-bottom: 24px;
     padding-bottom: 24px;
     border-bottom: 1px solid var(--light);
 }

 .contact-item:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .contact-item h3 {
     font-size: 18px;
     font-weight: 600;
     color: var(--text);
     margin-bottom: 8px;
 }

 .contact-item p {
     color: var(--muted);
     line-height: 1.6;
     margin: 0;
 }

 /* Contact Form Section */
 .contact-form-section {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 32px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.08);
 }

.contact-form-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    text-align: left;
 }

 .contact-form {
     max-width: 100%;
 }

 .form-field {
     margin-bottom: 20px;
 }

 .form-field label {
     display: block;
     color: var(--text);
     font-weight: 500;
     margin-bottom: 8px;
     font-size: 14px;
 }

 .form-field input,
 .form-field textarea,
 .form-field select {
     width: 100%;
     padding: 12px 16px;
     border: 1px solid var(--border);
     border-radius: 8px;
     font-family: inherit;
     font-size: 16px;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
 }

 .form-field input:focus,
 .form-field textarea:focus,
 .form-field select:focus {
     outline: none;
     border-color: var(--brand);
     box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
 }

 .form-field textarea {
     resize: vertical;
     min-height: 120px;
 }

 /* Toggle Switch Styling */
 .toggle-field {
     margin-bottom: 20px;
 }

 .toggle-label {
     display: flex;
     align-items: center;
     justify-content: space-between;
     cursor: pointer;
     padding: 16px 20px;
     background: var(--light);
     border: 1px solid var(--border);
     border-radius: 12px;
     transition: all 0.3s ease;
 }

 .toggle-label:hover {
     background: rgba(34, 197, 94, 0.05);
     border-color: var(--brand);
 }

 .toggle-text {
     font-size: 14px;
     line-height: 1.5;
     color: var(--text);
     font-weight: 500;
     flex: 1;
     margin-right: 16px;
 }

 .toggle-switch {
     position: relative;
     width: 50px;
     height: 26px;
     flex-shrink: 0;
 }

 .toggle-switch input[type="checkbox"] {
     display: none;
 }

 .toggle-slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #ccc;
     transition: 0.3s ease;
     border-radius: 26px;
     box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
 }

 .toggle-slider:before {
     position: absolute;
     content: "";
     height: 20px;
     width: 20px;
     left: 3px;
     bottom: 3px;
     background-color: white;
     transition: 0.3s ease;
     border-radius: 50%;
     box-shadow: 0 2px 4px rgba(0,0,0,0.2);
 }

 .toggle-switch input[type="checkbox"]:checked + .toggle-slider {
     background-color: var(--brand);
 }

 .toggle-switch input[type="checkbox"]:checked + .toggle-slider:before {
     transform: translateX(24px);
 }

 .toggle-switch input[type="checkbox"]:focus + .toggle-slider {
     box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
 }

 /* Checkbox Styling (keeping for other uses) */
 .checkbox-field {
     margin-bottom: 16px;
 }

 .checkbox-label {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     cursor: pointer;
     font-size: 14px;
     line-height: 1.5;
     color: var(--text);
 }

 .checkbox-label input[type="checkbox"] {
     display: none;
 }

 .checkmark {
     width: 18px;
     height: 18px;
     border: 2px solid var(--border);
     border-radius: 4px;
     position: relative;
     flex-shrink: 0;
     margin-top: 2px;
     transition: border-color 0.3s ease, background-color 0.3s ease;
 }

 .checkbox-label input[type="checkbox"]:checked + .checkmark {
     background: var(--brand);
     border-color: var(--brand);
 }

 .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
     content: '';
     position: absolute;
     left: 5px;
     top: 2px;
     width: 6px;
     height: 10px;
     border: solid white;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }

 /* Contact Form Section (for homepage) */
 .contact-form-container {
     max-width: 600px;
     margin: 0 auto;
     text-align: center;
 }

 .contact-form-container h2 {
     font-size: 36px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 16px;
 }

 .contact-form-container .lead {
     font-size: 18px;
     color: var(--muted);
     margin-bottom: 32px;
     line-height: 1.6;
 }

 .contact-form-container .contact-form {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 32px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.08);
 }

 /* Email Block Styling */
 .email-block {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
    border-radius: 16px;
    padding: 48px;
    margin: 32px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 2px solid rgba(255,255,255,0.1);
}

 .email-block::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
     opacity: 0.3;
 }

 .email-icon {
    font-size: 48px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.email-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    position: relative;
    z-index: 1;
}

 .email-block p {
     font-size: 16px;
     margin-bottom: 24px;
     opacity: 0.9;
     line-height: 1.6;
     position: relative;
     z-index: 1;
 }

 .email-form {
     display: flex;
     gap: 12px;
     max-width: 400px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .email-form input[type="email"] {
     flex: 1;
     padding: 14px 16px;
     border: none;
     border-radius: 10px;
     font-size: 16px;
     background: white;
     color: var(--text);
     box-shadow: 0 2px 8px rgba(0,0,0,0.1);
 }

 .email-form input[type="email"]:focus {
     outline: none;
     box-shadow: 0 0 0 3px rgba(255,255,255,0.3), 0 2px 8px rgba(0,0,0,0.1);
 }

 .email-form button {
     padding: 14px 24px;
     background: var(--accent);
     color: white;
     border: none;
     border-radius: 10px;
     font-weight: 600;
     font-size: 16px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0,0,0,0.1);
 }

 .email-form button:hover {
     background: var(--accent-600);
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0,0,0,0.2);
 }

 .email-form button:active {
     transform: translateY(0);
 }

 .email-icon {
     font-size: 48px;
     margin-bottom: 16px;
     opacity: 0.8;
     position: relative;
     z-index: 1;
 }

 /* Responsive adjustments for email block */
 @media (max-width: 640px) {
     .email-block {
         padding: 24px;
         margin: 24px 0;
     }
     
     .email-block h3 {
         font-size: 24px;
     }
     
     .email-block p {
         font-size: 14px;
     }
     
     .email-form {
         flex-direction: column;
         gap: 12px;
     }
     
     .email-form input[type="email"],
     .email-form button {
         width: 100%;
     }
     
         .email-icon {
        font-size: 36px;
    }
}

/* About Page Styling */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
}

.about-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.about-content .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--brand);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Mission, Vision, Values */
.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mvv-item {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.mvv-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.mvv-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.values-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.values-list li i {
    color: var(--brand);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.values-list li strong {
    color: var(--brand);
    font-weight: 600;
}

/* Why Choose Us */
.why-choose-us h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* Our Objectives */
.objectives-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.objective-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.objective-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.objective-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.objective-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* Responsive adjustments for About Page */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission-vision-values {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .about-content .lead {
        font-size: 18px;
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .mvv-item {
        padding: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .objective-card {
        padding: 24px;
    }
}

/* Client Board Page Styling */
.client-board-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.client-board-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.client-board-intro .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--brand);
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-board-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.client-board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.client-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.client-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.client-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.client-industry {
    font-size: 14px;
    color: var(--brand);
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 20px;
}

.tenure-badge {
    display: inline-block;
    background: var(--brand);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Board Purpose & Impact */
.board-purpose h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.purpose-item {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-4px);
}

.purpose-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.purpose-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.purpose-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.join-board-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.join-board-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.join-board-cta p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 32px;
}

/* Success Stories Page Styling */
.success-stories-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.success-stories-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.success-stories-intro .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--brand);
    line-height: 1.6;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.case-study {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.case-study-icon {
    width: 64px;
    height: 64px;
    background: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.case-study-meta {
    display: flex;
    gap: 16px;
}

.case-study-category,
.case-study-duration {
    background: var(--brand);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.case-study h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.case-study-subtitle {
    font-size: 16px;
    color: var(--brand);
    font-weight: 500;
    margin-bottom: 24px;
}

.case-study-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 12px;
}

.case-study-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 16px;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.solution-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.result-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
}

.result-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--brand);
    font-weight: 500;
}

/* Success Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.metric-card {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
}

.metric-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.metric-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
}

/* Success CTA */
.success-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.success-cta p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 32px;
}

/* Responsive adjustments for Client Board and Success Stories */
@media (max-width: 768px) {
    .client-board-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .case-studies-grid {
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .client-board-intro h2,
    .success-stories-intro h2 {
        font-size: 28px;
    }

    .client-board-intro .lead,
    .success-stories-intro .lead {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .client-board-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .client-card,
    .case-study,
    .testimonial,
    .metric-card {
        padding: 24px;
    }

    .case-study-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .case-study-meta {
        justify-content: center;
    }
}

 /* Responsive adjustments for Contact Page */
 @media (max-width: 900px) {
     .contact-layout {
         grid-template-columns: 1fr;
         gap: 32px;
     }
     
     .contact-info,
     .contact-form-section {
         padding: 24px;
     }
 }

 @media (max-width: 640px) {
     .contact-info h2,
     .contact-form-section h2 {
         font-size: 24px;
     }
     
     .contact-info,
     .contact-form-section {
         padding: 20px;
     }
     
     .form-field input,
     .form-field textarea,
     .form-field select {
         font-size: 16px; /* Prevents zoom on iOS */
     }
     
     /* Contact Form Section (for homepage) */
     .contact-form-container {
         margin: 0 16px;
     }
     
     .contact-form-container h2 {
         font-size: 28px;
     }
     
     .contact-form-container .lead {
         font-size: 16px;
     }
     
     .contact-form-container .contact-form {
         padding: 24px;
     }
 }

/* Services Page Styling */
.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.services-intro .lead {
    font-size: 20px;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.services-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-item i {
    font-size: 36px;
    color: var(--brand);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--muted);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 15px;
}

.service-features li i {
    color: var(--brand);
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.service-cta {
    text-align: center;
}

.service-cta .btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Process Intro */
.process-intro {
    text-align: center;
    margin-bottom: 60px;
}

.process-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.process-intro .lead {
    font-size: 20px;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    margin-bottom: 60px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-600));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 32px;
    color: var(--white);
}

.step-content {
    flex: 1;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.process-step h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.process-step p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.step-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
}

/* Process Benefits */
.process-benefits {
    margin-top: 60px;
    text-align: center;
}

.process-benefits h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-card i {
    font-size: 36px;
    color: var(--brand);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
}

.section--accent {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn--primary {
    background: var(--white);
    color: var(--brand);
}

.btn--primary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--secondary:hover {
    background: var(--white);
    color: var(--brand);
    transform: translateY(-2px);
}

/* Responsive adjustments for Services Page */
@media (max-width: 900px) {
    .services-intro h2 {
        font-size: 32px;
    }
    
    .services-intro .lead {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .cta-content h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .services-intro h2 {
        font-size: 28px;
    }
    
    .services-intro .lead {
        font-size: 16px;
    }
    
    .services-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .process-step {
        padding: 24px 20px;
        gap: 16px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .process-step h4 {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .about-cta-buttons .btn {
        min-width: 200px;
        padding: 14px 20px;
    }
}

/* Testimonials Section */
.testimonials-header {
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand);
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: 14px;
    color: var(--muted);
}

.testimonials-cta {
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.testimonials-cta .btn {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 5;
}

/* Specific styling for Read More Success Stories button */
.testimonials-cta .btn--secondary {
    border-color: var(--brand);
    border-width: 2px;
    color: var(--brand) !important;
}

/* Specific styling for Get Custom Quote buttons */
.about-cta-buttons .btn--secondary,
.pricing-cta .btn--secondary {
    color: var(--brand) !important;
}

/* Pricing Section */
.pricing-header {
    margin-bottom: 60px;
}

.pricing-overview {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.pricing-feature i {
    color: var(--brand);
    font-size: 20px;
}

.pricing-feature span {
    font-weight: 500;
    color: var(--text);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--brand);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price .currency {
    font-size: 20px;
    color: var(--text);
    vertical-align: top;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}

.price .period {
    font-size: 16px;
    color: var(--muted);
    text-align: center;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text);
}

.pricing-features-list i {
    color: var(--brand);
    font-size: 14px;
}

.pricing-card .btn {
    width: 100%;
    padding: 12px 24px;
    position: relative;
    z-index: 5;
    opacity: 1;
    visibility: visible;
}

.pricing-cta {
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.pricing-cta .btn {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 5;
}

.pricing-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

/* Mobile centering for pricing section */
@media (max-width: 768px) {
    .pricing-header {
        text-align: center;
    }
    
    .pricing-header h2 {
        text-align: center;
    }
    
    .pricing-header .lead {
        text-align: center;
    }
    
    .pricing-features {
        justify-items: center;
        text-align: center;
    }
    
    .pricing-feature {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-feature span {
        text-align: center;
    }
}

/* Responsive Design for Testimonials and Pricing */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .price .amount {
        font-size: 36px;
    }
    
    .price .period {
        font-size: 14px;
    }
    
    .pricing-header h3 {
        font-size: 20px;
    }
}

/* Catalogue Page Styles */
.catalogue-intro {
    text-align: center;
    margin-bottom: 60px;
}

.catalogue-intro h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.catalogue-intro .lead {
    font-size: 20px;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.catalogue-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-item {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.category-item i {
    font-size: 48px;
    color: var(--brand);
    margin-bottom: 20px;
}

.category-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.category-item p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
}

/* Catalogue Section Styles */
.catalogue-section {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon i {
    font-size: 36px;
    color: var(--white);
}

.section-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.section-content .lead {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Service Catalogue Grid */
.service-catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.catalogue-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.catalogue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.item-header {
    background: linear-gradient(135deg, var(--light), #f8fafc);
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.item-header i {
    font-size: 24px;
    color: var(--brand);
    margin-bottom: 12px;
}

.item-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.price-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-600));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.catalogue-item p {
    padding: 16px 20px 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}

.service-features {
    list-style: none;
    padding: 16px 20px;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.4;
}

.service-features li i {
    color: var(--brand);
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.item-cta {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.item-cta .btn {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
}

/* Responsive adjustments for Catalogue Page */
@media (max-width: 900px) {
    .catalogue-intro h2 {
        font-size: 24px;
    }
    
    .catalogue-intro .lead {
        font-size: 18px;
    }
    
    .catalogue-categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
        padding-left: 0;
    }
    
    .section-icon {
        margin: 0 auto;
    }
    
    .section-content {
        text-align: center;
    }
    
    .section-content h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .section-content .lead {
        text-align: center;
    }
    
    .service-catalogue-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .catalogue-intro h2 {
        font-size: 22px;
    }
    
    .catalogue-intro .lead {
        font-size: 16px;
    }
    
    .catalogue-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-item {
        padding: 24px 20px;
    }
    
    .category-item i {
        font-size: 40px;
    }
    
    .section-content h2 {
        font-size: 24px;
    }
    
    .section-content .lead {
        font-size: 16px;
    }
    
    .service-catalogue-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .item-header {
        padding: 24px 20px 16px;
    }
    
    .item-header h3 {
        font-size: 20px;
    }
    
    .price-tag {
        position: static;
        display: inline-block;
        margin-top: 12px;
    }
    
    .catalogue-item p {
        padding: 20px 20px 0;
    }
    
    .service-features {
        padding: 16px 20px;
    }
    
    .item-cta {
        padding: 0 20px 20px;
        flex-direction: column;
    }
    
    .item-cta .btn {
        width: 100%;
    }
}

/* Strategic Business Solutions Styles */
.strategic-solutions {
    margin-bottom: 60px;
}

.section-header.text-center {
    display: block;
    text-align: center;
    margin-bottom: 50px;
}

.section-header.text-center h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}

.section-header.text-center .lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.strategic-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategic-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
}

.strategic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.strategic-card--featured {
    border: 2px solid var(--brand);
    transform: scale(1.05);
}

.strategic-card--featured::before {
    content: "Most Popular";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--brand);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategic-header {
    background: linear-gradient(135deg, var(--light), #f8fafc);
    padding: 30px 24px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.strategic-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.strategic-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
}

.price-period {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategic-features {
    list-style: none;
    padding: 24px;
    margin: 0;
    text-align: center;
}

.strategic-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.strategic-features li i {
    color: var(--brand);
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.strategic-card .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    text-align: center;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Why Choose Section Styles */
.why-choose {
    margin-bottom: 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.why-choose-icon i {
    font-size: 32px;
    color: var(--white);
}

.why-choose-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.why-choose-item p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 16px;
}

.strategic-cta {
    margin-top: 50px;
}

.btn--large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive adjustments for Strategic Solutions */
@media (max-width: 900px) {
    .section-header.text-center h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .section-header.text-center .lead {
        font-size: 18px;
    }
    
    .strategic-pricing {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .strategic-card--featured {
        transform: none;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .section-header.text-center {
        display: block !important;
        text-align: center !important;
    }
    
    .section-header.text-center h2 {
        font-size: 28px;
        text-align: center !important;
    }
    
    .section-header.text-center .lead {
        font-size: 16px;
        text-align: center;
    }
    
    .strategic-pricing {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strategic-header {
        padding: 24px 20px 16px;
    }
    
    .strategic-header h3 {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .strategic-features {
        padding: 20px;
    }
    
    .strategic-card .btn {
        margin: 0 20px 20px;
        width: calc(100% - 40px);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .why-choose-item {
        padding: 24px 16px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-icon i {
        font-size: 24px;
    }
    
    .why-choose-item h3 {
        font-size: 20px;
    }
    
    .btn--large {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--brand);
}

.legal-section h2 {
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.legal-section h3 {
    color: var(--text);
    font-size: 20px;
    font-weight: 500;
    margin: 25px 0 15px 0;
}

.legal-section p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 5px;
}

.legal-section strong {
    color: var(--text);
    font-weight: 600;
}

.contact-info {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid var(--accent);
}

.contact-info p {
    margin-bottom: 8px;
    color: var(--text);
}

.last-updated {
    text-align: center;
    color: var(--muted);
    font-style: italic;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 48px 0;
    }
    
    .page-hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
        color: var(--white);
    }
    
    .page-hero p {
        font-size: 16px;
        max-width: 100%;
        padding: 0 20px;
        color: rgba(255,255,255,.9);
    }
    
    .legal-content {
        padding: 20px 0;
    }
    
    .legal-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .contact-info {
        padding: 15px;
    }
}

/* Client Portfolio Page Styling */
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Clients Grid */
.featured-clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.featured-clients-grid .client-card {
    text-align: left;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-clients-grid .client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.client-header {
    margin-bottom: 16px;
}

.client-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.client-header .client-industry {
    font-size: 14px;
    color: var(--brand);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-location {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.client-services {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 20px;
}

.client-services strong {
    color: var(--text);
}

.client-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: var(--brand);
    color: white;
}

.client-since {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* Geographic Distribution */
.geographic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.province-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.province-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.province-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.province-stats {
    margin-bottom: 16px;
}

.province-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 4px;
    line-height: 1;
}

.province-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.province-cities {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--brand);
    font-weight: 500;
}

/* Partnership Opportunities */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.partnership-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.partnership-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.partnership-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.partnership-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* CTA Section */
.cta-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 160px;
}

/* Responsive Design for Client Portfolio */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .featured-clients-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .geographic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .geographic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .stat-card,
    .province-card,
    .partnership-card {
        padding: 24px 20px;
    }
    
    .featured-clients-grid .client-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .province-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .province-number {
        font-size: 24px;
    }
}

/* Mission & Vision Section */
.mission-vision-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.mission-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
}

.vision-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

/* About CTA Section */
.about-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 0;
}

.about-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.about-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 32px;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .cta-buttons .btn {
    min-width: 180px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.about-cta .cta-buttons .btn--primary {
    background: var(--brand);
    color: white;
    border: 2px solid var(--brand);
}

.about-cta .cta-buttons .btn--primary:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.about-cta .cta-buttons .btn--secondary {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
}

.about-cta .cta-buttons .btn--secondary:hover {
    background: var(--light);
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive Design for Mission & Vision */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .mission-card,
    .vision-card {
        padding: 32px 24px;
    }
    
    .mission-vision-section h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .about-cta h2 {
        font-size: 28px;
    }
    
    .about-cta p {
        font-size: 16px;
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .mission-card,
    .vision-card {
        padding: 24px 20px;
    }
    
    .mission-icon,
    .vision-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 14px;
    }
    
    .about-cta h2 {
        font-size: 24px;
    }
    
    .about-cta p {
        font-size: 15px;
    }
}

/* Enhanced CTA Section */
.enhanced-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 0;
}

.enhanced-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.enhanced-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 40px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: var(--brand);
}

.cta-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
    line-height: 1;
}

.cta-stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enhanced-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.enhanced-cta .cta-buttons .btn {
    min-width: 180px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    border: 2px solid;
    cursor: pointer;
}

.enhanced-cta .cta-buttons .btn--secondary {
    background: #ffffff;
    color: var(--text);
    border-color: var(--brand);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.enhanced-cta .cta-buttons .btn--secondary:hover {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}

/* Responsive Design for Enhanced CTA */
@media (max-width: 768px) {
    .enhanced-cta h2 {
        font-size: 28px;
    }
    
    .enhanced-cta p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .cta-stat {
        padding: 20px 16px;
    }
    
    .cta-stat-number {
        font-size: 28px;
    }
    
    .enhanced-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .enhanced-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .enhanced-cta h2 {
        font-size: 24px;
    }
    
    .enhanced-cta p {
        font-size: 15px;
    }
    
    .cta-stat-number {
        font-size: 24px;
    }
    
    .cta-stat-label {
        font-size: 12px;
    }
}

/* Payment Page Styles */
.payment-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.payment-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.payment-header {
    text-align: center;
    margin-bottom: 40px;
}

.payment-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.payment-header p {
    color: var(--muted);
    font-size: 16px;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.payment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-form label {
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.payment-form input,
.payment-form select {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.payment-form input:focus,
.payment-form select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.payment-form input.error,
.payment-form select.error {
    border-color: #dc2626;
}

.payment-summary {
    background: var(--light);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin: 24px 0;
}

.payment-summary h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 600;
    font-size: 18px;
    color: var(--brand);
    border-top: 2px solid var(--border);
    padding-top: 12px;
    margin-top: 8px;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
}

.checkbox-label a {
    color: var(--brand);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--brand-600);
}

.payfast-btn {
    background: var(--brand);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    margin-top: 16px;
}

.payfast-btn:hover:not(:disabled) {
    background: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}

.payfast-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-security {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.security-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    text-align: center;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.security-icon i {
    font-size: 24px;
    color: white;
}

.security-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.security-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.payfast-badge {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* Payment Success/Cancelled Pages */
.payment-result {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.payment-result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 32px;
}

.payment-result-icon.success {
    background: var(--brand);
    color: white;
}

.payment-result-icon.cancelled {
    background: #dc2626;
    color: white;
}

.payment-result h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.payment-result p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.payment-result .btn {
    margin: 0 12px;
}

.next-steps,
.help-options {
    background: var(--light);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin: 32px 0;
}

.next-steps h3,
.help-options h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.next-steps ul,
.help-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li,
.help-options li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--muted);
    font-size: 14px;
}

.next-steps i,
.help-options i {
    color: var(--brand);
    width: 16px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.action-buttons .btn--primary {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.action-buttons .btn--primary:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

.action-buttons .btn--secondary {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.action-buttons .btn--secondary:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

/* Responsive Design for Payment Pages */
@media (max-width: 768px) {
    .payment-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .payment-form-section {
        padding: 24px;
    }
    
    .payment-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-header h2 {
        font-size: 24px;
    }
    
    .payment-result h1 {
        font-size: 28px;
    }
    
    .payment-result p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .payment-form-section {
        padding: 20px;
    }
    
    .payment-header h2 {
        font-size: 22px;
    }
    
    .payment-summary {
        padding: 20px;
    }
    
    .security-card {
        padding: 20px;
    }
    
    .payment-result {
        padding: 40px 20px;
    }
    
    .payment-result h1 {
        font-size: 24px;
    }
}

/* Package Actions Styles */
.package-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.package-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.package-actions .btn--primary {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.package-actions .btn--primary:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

.package-actions .btn--secondary {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.package-actions .btn--secondary:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

@media (max-width: 480px) {
    .package-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .package-actions .btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top:hover {
    background: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
    color: white;
    text-decoration: none;
}

.back-to-top:focus {
    outline: 2px solid var(--brand-600);
    outline-offset: 2px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments for back-to-top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* About Us Section - New Structure */
.about-hero {
    margin-bottom: 80px;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-header {
    text-align: left;
}

.about-hero-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--brand);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
}

.about-hero-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-badge {
    display: inline-block;
    background: var(--brand);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 32px;
}

.about-hero-stats {
    display: flex;
    gap: 32px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--brand);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}





/* Mission & Vision */
.about-mission-vision {
    margin-bottom: 80px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
}

.mission-header,
.vision-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.mission-header i,
.vision-header i {
    font-size: 32px;
    color: var(--brand);
    margin-right: 16px;
}

.mission-header h3,
.vision-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand);
    margin: 0;
}

.mission-card p,
.vision-card p {
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}



/* Call to Action */
.about-cta {
    background: var(--brand);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

/* About CTA Buttons */
.about-cta-buttons {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.about-cta-buttons .btn {
    min-width: 180px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-cta-buttons .btn--primary {
    background: var(--brand);
    color: white;
    border: 2px solid var(--brand);
}

.about-cta-buttons .btn--primary:hover {
    background: #005a3c;
    border-color: #005a3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 90, 60, 0.3);
}

.about-cta-buttons .btn--secondary {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}

.about-cta-buttons .btn--secondary:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 90, 60, 0.3);
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn--primary {
    background: white;
    color: var(--brand);
}

.cta-buttons .btn--primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn--secondary:hover {
    background: white;
    color: var(--brand);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-header {
        text-align: center;
    }
    
    .about-hero-text h2 {
        font-size: 32px;
    }
    
    .about-hero-stats {
        justify-content: center;
    }
    
    .about-image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 60px;
    }
    

    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    

    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .about-hero-text h2 {
        font-size: 28px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 50px;
    }
    
    /* Center content on mobile */
    .about-hero-header {
        text-align: center;
    }
    
    .about-hero-header h2 {
        text-align: center;
    }
    
    .about-hero-description {
        text-align: center;
    }
    
    .about-hero-features {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }
    
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        max-width: 300px;
    }
    
    .feature-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: var(--brand);
        border-radius: 50%;
        color: white;
        font-size: 24px;
    }
    
    .feature-content h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 8px;
    }
    
    .feature-content p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.5;
    }
    

    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    

    
    .about-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Trust Signals Section */
.trust-signals {
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand), #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 32px;
    color: white;
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
}

.trust-card p {
    color: var(--muted);
    line-height: 1.6;
}


/* Urgency & Consequences Section */
.urgency-section {
    padding: 60px 0;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.urgency-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.urgency-card.warning::before {
    background: #ffc107;
}

.urgency-card.critical::before {
    background: #dc3545;
}

.urgency-card.solution::before {
    background: var(--brand);
}

.urgency-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.urgency-card.warning .urgency-icon {
    background: #fff3cd;
    color: #856404;
}

.urgency-card.critical .urgency-icon {
    background: #f8d7da;
    color: #721c24;
}

.urgency-card.solution .urgency-icon {
    background: #d4edda;
    color: #155724;
}

.urgency-icon i {
    font-size: 24px;
}

.urgency-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.urgency-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.urgency-card li {
    padding: 8px 0;
    color: var(--text);
    position: relative;
    padding-left: 20px;
}

.urgency-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
}

.urgency-cta {
    margin-top: 40px;
    text-align: center;
}

.urgency-note {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
}



/* Responsive Design for New Sections */
@media (max-width: 900px) {
    .trust-grid,
    .urgency-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .trust-signals,
    .urgency-section {
        padding: 40px 0;
    }
    
    .trust-signals .section-header {
        text-align: center;
    }
    
    .trust-signals .section-header h2 {
    text-align: center !important;
}
    
    .trust-signals .section-header .lead {
        text-align: center;
    }
    
    .trust-card,
    .urgency-card {
        padding: 20px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon i {
        font-size: 24px;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Animation Keyframes */
@keyframes heroContentEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroActionsEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroArrowEntrance {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes heroDotsEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Button hover animations */
.hero-slide .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff !important;
}

.hero-slide .btn::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;
}

.hero-slide .btn:hover::before {
    left: 100%;
}

.hero-slide .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Loading animation for hero slider */
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    animation: heroLoadingBar 3s ease-out forwards;
    z-index: 20;
}

@keyframes heroLoadingBar {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

/* Stable hero slides - no image movement */
.hero-slide {
    will-change: auto;
}

/* Enhanced button animations */
.hero-slide .btn--primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border: none;
    box-shadow: 0 4px 15px rgba(34,197,94,0.3);
    color: #ffffff !important;
}

.hero-slide .btn--primary:hover {
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
    box-shadow: 0 8px 25px rgba(34,197,94,0.4);
    transform: translateY(-3px);
    color: #ffffff !important;
}

.hero-slide .btn--secondary {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-slide .btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    color: #ffffff !important;
}

/* Pulse animation for active dot */
.hero-dot.is-active {
    animation: heroDotPulse 2s ease-in-out infinite;
}

@keyframes heroDotPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(34,197,94,0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(34,197,94,0.8);
    }
}

/* Smooth scroll indicator */
.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: heroScrollIndicator 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes heroScrollIndicator {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Page load animation */
.hero-slider {
    opacity: 0;
    animation: heroSliderEntrance 1.5s ease-out 0.5s forwards;
}

@keyframes heroSliderEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide .hero__content,
    .hero-slide .hero__content h1,
    .hero-slide .hero__content p,
    .hero-slide .hero__actions,
    .hero-arrow,
    .hero-dots,
    .hero-slider::before,
    .hero-slider::after {
        animation: none !important;
        transition: none !important;
        /* When animations are disabled, ensure the hero content is still visible */
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-slide {
        opacity: 1;
        transform: none;
    }
    
    .hero-slide.is-active {
        opacity: 1;
        transform: none;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--brand);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 20px;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
    visibility: visible !important;
    opacity: 1 !important;
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}

.cookie-banner__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    padding: 5px 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    z-index: 10;
}

.cookie-banner__close:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.05);
}

.cookie-banner__text {
    flex: 1;
    min-width: 300px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookie-banner__text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookie-banner__text p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookie-banner__text a {
    color: var(--brand);
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: var(--brand-600);
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}

.btn--small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Ensure all cookie banner buttons are stable and visible */
.cookie-banner__actions .btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

.cookie-banner__actions .btn--primary,
.cookie-banner__actions .btn--secondary {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Specific styling for Essential Only and Settings buttons */
.cookie-banner__actions .btn--secondary {
    background: transparent !important;
    border: 2px solid var(--brand) !important;
    color: var(--brand) !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    min-width: 100px !important;
    padding: 8px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.cookie-banner__actions .btn--secondary:hover {
    background: var(--brand) !important;
    color: white !important;
    border-color: var(--brand) !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 20px;
}

.cookie-modal__content {
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.cookie-modal__header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.cookie-modal__close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.cookie-modal__close:hover {
    color: var(--text);
}

.cookie-modal__body {
    padding: 0 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cookie-category__header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.cookie-category p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle__slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background-color: var(--brand);
}

.cookie-toggle input:checked + .cookie-toggle__slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
    background-color: var(--brand);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal__footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 24px;
    border-top: 1px solid var(--border);
    margin-top: 24px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a svg {
    color: #ffffff;
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float a i {
        font-size: 26px;
    }
    
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        max-width: 100%;
    }
    
    .cookie-banner__text {
        min-width: auto;
        text-align: center;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .cookie-banner__text h3 {
        font-size: 16px;
        margin-bottom: 8px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .cookie-banner__text p {
        font-size: 13px;
        line-height: 1.4;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .cookie-banner__actions {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 6px;
        width: 100%;
        display: flex;
    }
    
    .cookie-banner__actions .btn--small {
        flex: 1;
        min-width: 100px;
        max-width: none;
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
        text-align: center;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .cookie-banner__actions .btn--secondary {
        background: transparent !important;
        border: 2px solid var(--brand) !important;
        color: var(--brand) !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1 !important;
        min-width: 100px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        text-align: center !important;
        border-radius: 6px !important;
    }
    
    .cookie-modal__content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .cookie-modal__header {
        padding: 20px 20px 0;
    }
    
    .cookie-modal__body {
        padding: 0 20px;
    }
    
    .cookie-modal__footer {
        padding: 20px;
        flex-direction: column;
    }
    
    .cookie-category__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Testimonial Avatar Images - Mobile Fixed */
.testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    border-color: var(--brand);
}

.author-info {
    flex: 1;
}

/* Image Display */
.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}



