/* General Styles */
:root {
    --background-dark: #1a1a1a;
    --background-header: #1a1a1a;
    --text-primary: #e0e0e0;
    --color-gold: #ffd700;
    --color-silver: #c0c0c0;
    --btn-bg: #ffd700;
    --btn-text: #111;
    --btn-hover-bg: #e6c200;
    --form-bg: #2a2a2a;
    --input-bg: #333;
    --input-border: #444;
    --input-focus: #ffd700;
    /* New accent colors for portfolio */
    --color-blue-accent: #007bff; /* A vibrant blue */
    --color-green-accent: #28a745; /* A vibrant green */
    --card-bg: #2a2a2a; /* Darker background for cards */
    --card-hover-shadow: 0 8px 20px rgba(0, 123, 255, 0.4); /* Blue shadow on hover */
    --hdr-h: 68px;
    --radius: 14px;
    --shadow-1: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-2: 0 4px 14px rgba(0, 0, 0, 0.1);
    --gold: #f2c200;
    --bg-900: #0f0f10;
    --bg-800: #161617;
    --bg-700: #1f1f21;
    --txt: #f6f6f6;
    --muted: #9aa0a6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

* {
    transition: all 0.3s ease;
}

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

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.key-word {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    text-align: center;
    padding-top: 0.8rem;
    padding-bottom: 0.4rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-align: center;
    padding-top: 0.6rem;
    padding-bottom: 0.3rem;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    padding-top: 0.4rem;
    padding-bottom: 0.2rem;
}

h5, h6 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    text-decoration: underline;
    color: var(--btn-hover-bg);
}

/* Header */
header {
    background: transparent;
    position: static;
    padding: 0;
    box-shadow: none;
}

header.scrolled {
    box-shadow: none;
}

.logo1 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--color-gold), var(--color-silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-family: 'Tajawal', sans-serif;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 0 20px rgba(255,215,0,0.5);
}

.logo1:hover {
    transform: rotate(-5deg) scale(1.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-gold);
    border-bottom: none;
    padding: 0;
    display: block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    animation: animate-shapes 20s linear infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 80%;
    animation-duration: 25s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 50%;
    animation-duration: 15s;
}

@keyframes animate-shapes {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

.hero-text {
    z-index: 1;
    position: relative;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1rem;
}

.hero-highlights span {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-secondary-cta {
    margin-top: 1rem;
    font-size: 1rem;
}

.hero-secondary-cta a {
    color: var(--color-gold);
    font-weight: bold;
}

.cta-banner {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.02));
    padding: 3rem 1.5rem;
}

.cta-banner .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: right;
}

.cta-banner-content h2 {
    text-align: right;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-outline {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: animate-text 1s forwards;
}

.animate-text:nth-child(1) {
    animation-delay: 0.5s;
}

.animate-text:nth-child(2) {
    animation-delay: 1s;
}

.animate-text:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes animate-text {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-button {
    opacity: 0;
    transform: scale(0.8);
    animation: animate-button 1s forwards 2s;
}

@keyframes animate-button {
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Buttons */
.btn {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    background-color: var(--btn-hover-bg);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.btn-modern {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background-image: linear-gradient(to right, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Sections */
section {
    padding: 4rem 2rem;
    text-align: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: right;
}

.about-container .images-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-container .images-container .image {
    position: absolute;
    width: 60%;
}

.about-container .images-container .image-top {
    top: 0;
    left: 0;
    z-index: 1;
}

.about-container .images-container .image-bottom {
    bottom: 0;
    right: 0;
    z-index: 0;
}

.about-container .images-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, filter 0.3s;
}

.about-container .images-container img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.about-container .text-container {
    flex: 2;
    min-width: 300px;
}

.about-container ul {
    list-style: none;
    padding: 0;
}

.about-container ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 1.5rem;
}

.about-container ul li::before {
    content: '✅';
    position: absolute;
    right: 0;
}

.credibility-section {
    background-color: var(--form-bg);
    padding: 4rem 2rem;
}

.credibility-section h2 {
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.metrics-card {
    background-color: var(--input-bg);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.metrics-card strong {
    font-size: 2rem;
    color: var(--color-gold);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: var(--color-gold);
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.process-section {
    padding: 4rem 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.process-step {
    background-color: var(--form-bg);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.process-step p {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.faq-section {
    padding: 4rem 2rem;
}

.faq-item {
    background-color: var(--form-bg);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: right;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.faq-item h4 {
    color: var(--color-silver);
    cursor: pointer;
}

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

.service-item {
    background-color: var(--form-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.service-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s, filter 0.3s;
}

.service-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.packages-section {
    background-color: rgba(0, 0, 0, 0.4);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.package-card {
    background-color: var(--form-bg);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: right;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.45);
}

.package-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #FFD700, #FFB347);
    color: #111;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.package-desc {
    color: var(--color-silver);
    margin-bottom: 1.2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem 0;
}

.package-features li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.package-features i {
    color: var(--color-gold);
}

.package-price {
    margin-bottom: 1.5rem;
}

.package-price .from {
    display: block;
    color: var(--color-silver);
    font-size: 0.9rem;
}

.package-price .value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
}

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

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s;
}

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

.lightbox {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.case-studies-section {
    background-color: rgba(0, 0, 0, 0.45);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.case-card {
    background-color: var(--form-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.5);
}

.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.case-card-header h3 {
    margin: 0;
}

.case-result {
    background-color: rgba(255, 215, 0, 0.15);
    color: var(--color-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.case-card p {
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.prev-btn, .next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.prev-btn {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next-btn {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.ratings-section {
    padding: 4rem 2rem;
}

.ratings-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.ratings-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ratings-preview blockquote {
    background-color: var(--form-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: right;
    font-style: italic;
    position: relative;
}

.ratings-preview cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--color-gold);
    font-weight: bold;
}

.ratings-main {
    padding: 4rem 2rem;
}

.guarantee-section {
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.08), rgba(0, 0, 0, 0.6));
    padding: 4rem 2rem;
}

.guarantee-header {
    text-align: center;
}

.guarantee-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.guarantee-list {
    flex: 2;
    display: grid;
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.guarantee-item i {
    font-size: 2rem;
    color: var(--color-gold);
}

.guarantee-aside {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.55);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-stat {
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 1.5rem;
}

.guarantee-stat .value {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.guarantee-stat .label {
    color: var(--color-silver);
    font-size: 0.95rem;
}

.guarantee-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.guarantee-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
}

.guarantee-checklist i {
    color: var(--color-gold);
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.rating-card {
    background-color: var(--form-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: right;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.rating-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.client-name {
    font-weight: bold;
    color: var(--color-gold);
}

.rating-stars {
    color: var(--color-gold);
}

#add-rating-form {
    background-color: var(--form-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
}

#add-rating-form input, #add-rating-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    background-color: var(--input-bg);
    color: var(--text-primary);
}

#add-rating-form input:focus, #add-rating-form textarea:focus {
    outline: none;
    border-color: var(--input-focus);
}

.cta-highlight {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.08), rgba(0, 0, 0, 0.6));
    text-align: center;
}

.cta-highlight .container {
    max-width: 850px;
    margin: 0 auto;
}

.cta-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-options .btn-outline {
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-content h2 {
        text-align: center;
    }

    .cta-banner-actions {
        justify-content: center;
    }

    .metrics-grid,
    .process-steps,
    .package-grid,
    .case-grid,
    .ratings-preview {
        grid-template-columns: 1fr;
    }

    .trust-strip-items {
        gap: 0.8rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .step-number {
        right: calc(50% - 20px);
    }

    .guarantee-content {
        flex-direction: column;
    }
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    background-color: var(--form-bg);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Form Styles */
#leadForm {
    margin-top: 2rem;
    text-align: right; /* Align form elements to the right for RTL */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

#leadForm input[type="text"],
#leadForm input[type="email"],
#leadForm input[type="tel"],
#leadForm select,
#leadForm textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    background-color: var(--input-bg);
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif; /* Ensure consistent font */
}

#leadForm input[type="text"]:focus,
#leadForm input[type="email"]:focus,
#leadForm input[type="tel"]:focus,
#leadForm select:focus,
#leadForm textarea:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 0 5px var(--input-focus);
}

#leadForm textarea {
    resize: vertical; /* Allow vertical resizing */
}

#leadForm select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23FFD700' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 16px;
    padding-left: 2.5rem;
}

.form-group-inline {
    display: flex;
    justify-content: flex-start;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    color: var(--color-silver);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.contact-note {
    margin-top: 2rem;
    color: var(--muted);
    text-align: center;
    font-size: 0.95rem;
}

.or-contact-whatsapp {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    text-align: center;
}

/* Portfolio Section */
.portfolio-section {
    padding: 4rem 2rem;
    text-align: center;
}

.portfolio-filters {
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    background-color: var(--input-bg);
    color: var(--text-primary);
    border: 1px solid var(--input-border);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.filter-btn:hover {
    background-color: var(--color-blue-accent);
    color: #fff;
    border-color: var(--color-blue-accent);
    transform: translateY(-3px) scale(1.05);
}

.filter-btn.active {
    background-color: var(--color-green-accent);
    color: #fff;
    border-color: var(--color-green-accent);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.5);
    transform: translateY(-3px);
}

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

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 250px;
    opacity: 1;
    transition: opacity 0.4s ease-in-out, transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
}

.portfolio-card.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none; /* Prevent interaction with hidden cards */
    width: 0; /* Collapse the space */
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
    border: none; /* Remove border */
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s;
}

.portfolio-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    padding: 2rem 1rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .card-title {
    transform: translateY(0);
}

/* Hide cards that don't match the filter */
.portfolio-card.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-filters {
        flex-direction: column;
    }
    .filter-btn {
        width: 100%;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.whatsapp-button {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background-color: #25D366;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Footer */
.site-footer {
    background-color: var(--background-header);
    color: var(--text-primary);
    padding: 3rem 2rem 0;
    text-align: right;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: right;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-column p {
    color: var(--color-silver);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--color-silver);
    transition: color 0.3s, padding-right 0.3s, letter-spacing 0.3s;
}

.footer-column ul li a:hover {
    color: var(--color-gold);
    padding-right: 10px;
    text-decoration: none;
    letter-spacing: 1px;
}

.footer-column.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-column.contact i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-social-links a:hover {
    background-color: var(--color-gold);
    color: var(--background-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 1.5rem 0;
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: var(--color-silver);
}

.developer-credit {
    font-size: 1rem;
    font-weight: bold;
    background: none;
    -webkit-text-fill-color: inherit;
    animation: none;
    text-shadow: none;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column.contact p {
        justify-content: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


@keyframes glow {
    from {
        text-shadow: 0 0 5px var(--color-gold), 0 0 10px var(--color-gold), 0 0 15px var(--color-gold);
    }
    to {
        text-shadow: 0 0 10px var(--color-silver), 0 0 20px var(--color-silver), 0 0 30px var(--color-silver);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .about-container {
        flex-direction: column;
    }

    .about-container .images-container {
        width: 100%;
        position: static;
    }

    .about-container .images-container .image {
        position: static;
        width: 100%;
    }

    .new-section-item {
        min-width: 100%;
    }

    .services-grid, .ratings-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Contact Icons */
.fixed-contact-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.call-icon {
    background-color: #007bff;
}

.call-icon i {
    font-size: 24px;
}

.whatsapp-icon {
    background-color: #25D366;
}

.whatsapp-icon img {
    width: 30px;
    height: 30px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .fixed-contact-icons {
        bottom: 15px;
        left: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .call-icon i {
        font-size: 20px;
    }

    .whatsapp-icon img {
        width: 25px;
        height: 25px;
    }
}

/* ============ Header (Desktop + Scroll) ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1001;
    backdrop-filter: saturate(160%) blur(10px);
    background: rgba(18, 18, 18, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: #111;
    box-shadow: var(--shadow-2);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: var(--hdr-h);
    padding: 0 12px;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.logo span {
    background: linear-gradient(90deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 18px rgba(242, 194, 0, 0.35);
}

.primary-nav {
    display: none;
}

.header-ctas {
    display: none;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

.menu-toggle .menu-icon {
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
    display: block;
}

.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease;
}

.menu-toggle .menu-icon::before {
    top: -6px;
}

.menu-toggle .menu-icon::after {
    top: 6px;
}

@media (min-width: 992px) {
    .primary-nav {
        display: block;
    }

    .primary-nav ul {
        display: flex;
        align-items: center;
        gap: 18px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .primary-nav a {
        color: #fff;
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 10px;
        font-weight: 600;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .primary-nav a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .header-ctas {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .header-ctas .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .header-ctas .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-1);
    }

    .btn.btn-solid {
        background: var(--gold);
        color: #111;
        border: 1px solid #ccb000;
    }

    .btn.btn-outline {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .menu-toggle {
        display: none;
    }
}

/* ============ Side Drawer (Mobile) ============ */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.drawer-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.side-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(86vw, 360px);
    background: #131313;
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.side-drawer.open {
    transform: translateX(0);
}

.drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: calc(16px + env(safe-area-inset-top)) calc(16px + env(safe-area-inset-left)) calc(16px + env(safe-area-inset-bottom)) calc(16px + env(safe-area-inset-right));
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.drawer-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
}

.drawer-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.drawer-close:hover,
.drawer-close:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffd700;
}

.drawer-scroll {
    flex: 1;
    overflow-y: auto;
    display: grid;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.drawer-scroll::after {
    content: "";
    display: block;
    height: 8px;
}

.drawer-nav {
    display: grid;
    gap: 0.75rem;
}

.drawer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #191919;
    border: 1px solid #2a2a2a;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.drawer-link:hover,
.drawer-link:focus {
    background: #222225;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.drawer-info {
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
}

.drawer-badge {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

body.drawer-open .sticky-bar {
    pointer-events: none;
    transform: translateY(110%);
    opacity: 0;
}

body.drawer-open .fixed-contact-icons {
    opacity: 0;
    pointer-events: none;
}

.drawer-ctas {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.drawer-ctas .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.drawer-ctas .btn.btn-solid {
    background: var(--gold);
    color: #111;
    border: 1px solid #ccb000;
}

.drawer-ctas .btn.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

body.drawer-open {
    overflow: hidden;
}

/* Sticky CTA bar for mobile */
.sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(17, 17, 17, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-2);
    padding: 10px calc(12px + env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) calc(12px + env(safe-area-inset-right));
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-item {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-item:last-child {
    border-right: none;
}

.sticky-item i {
    font-size: 1.1rem;
}

.sticky-item.accent {
    background: var(--gold);
    color: #111;
    font-weight: 700;
    border-right: none;
}

.sticky-item span {
    display: inline-block;
}

@media (min-width: 992px) {
    .sticky-bar {
        display: none;
    }
}

/* صور أسرع */
img {
    height: auto;
    max-width: 100%;
}

section[id] {
    scroll-margin-top: calc(var(--hdr-h) + 24px);
}

/* Lead Form */
/* ============================================
   UNIFIED FORM STYLES - Applied to all forms
   ============================================ */

.lead-form {
    display: grid;
    gap: 1.5rem;
    background: var(--form-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.lead-form .form-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.lead-form .field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lead-form .field.full {
    grid-column: 1 / -1;
}

.lead-form .field.required label::after {
    content: " *";
    color: #ff6b6b;
}

.lead-form label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder,
.lead-form select:invalid {
    color: var(--muted);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
    background: rgba(51, 51, 51, 0.8);
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}

.lead-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFD700' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 18px;
    padding-left: 3rem;
    cursor: pointer;
}

.lead-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.lead-form .field-error {
    min-height: 1.25rem;
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.lead-form .field-help {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.lead-form .file-list {
    display: grid;
    gap: 0.5rem;
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
}

.lead-form .file-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

.lead-form .file-remove {
    border: none;
    background: transparent;
    color: #ffb3b3;
    font-size: 1.2rem;
    cursor: pointer;
}

.lead-form .honeypot {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.lead-form .form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    margin-top: 0.5rem;
}

.lead-form .submit-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    background: var(--color-gold);
    color: var(--btn-text);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.lead-form .submit-btn:hover:not(:disabled) {
    background: var(--btn-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.lead-form .submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.lead-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.lead-form .form-status {
    font-size: 0.95rem;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    min-height: 1.5rem;
}

.lead-form .form-status.is-success {
    color: #9ff3c7;
    background: rgba(159, 243, 199, 0.1);
    border: 1px solid rgba(159, 243, 199, 0.3);
}

.lead-form .form-status.is-error {
    color: #ffb3b3;
    background: rgba(255, 179, 179, 0.1);
    border: 1px solid rgba(255, 179, 179, 0.3);
}

.lead-form .form-status.is-info {
    color: var(--color-gold);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .lead-form {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
        gap: 1.25rem;
    }

    .lead-form .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        padding: 0.9rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .lead-form .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    body {
        font-size: 0.97rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Hide legacy floating icons on mobile to avoid duplication with sticky bar */
@media (max-width: 991px) {
    .fixed-contact-icons {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .sticky-bar {
        display: none !important;
    }
}

.site-header {
    z-index: 1080;
}

.fixed-contact-icons {
    z-index: 900;
    transition: opacity 0.25s ease;
}

.header-ctas .btn {
    font-weight: 600;
}

.header-ctas .btn-solid:hover {
    filter: brightness(1.05);
}

.header-ctas .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.sticky-bar {
    padding: 10px calc(12px + env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom))
        calc(12px + env(safe-area-inset-right));
}

.sticky-item {
    min-height: 52px;
    font-size: 15px;
}

.sticky-item i {
    font-size: 1.2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.75rem;
}

.compact-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 520px;
    display: grid;
    gap: 1rem;
}

.compact-benefits li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.compact-benefits li span {
    font-weight: 700;
    color: var(--gold);
}

.single-cta {
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 991px) {
    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }
}