/**
 * assets/css/main.css - الأنماط الرئيسية للقالب
 * يتضمن جميع الأنماط المخصصة للقالب بدعم RTL كامل
 * الهوية: ذهبي فاخر - أسود داكن - أبيض ناعم
 *
 * @package Golden_Carving
 * @since 1.0.0
 */

/* ========================================
   CSS Custom Properties (Variables)
   ======================================== */
:root {
    --gc-gold: #C6A75E;
    --gc-gold-light: #d4ba7a;
    --gc-gold-dark: #a88d45;
    --gc-dark: #111111;
    --gc-dark-light: #1a1a1a;
    --gc-dark-medium: #222222;
    --gc-light: #F5F5F5;
    --gc-white: #ffffff;
    --gc-gray: #888888;
    --gc-gray-light: #e0e0e0;
    --gc-border: rgba(198, 167, 94, 0.2);
    --gc-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --gc-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --gc-shadow-gold: 0 4px 20px rgba(198, 167, 94, 0.15);
    --gc-radius: 8px;
    --gc-radius-lg: 16px;
    --gc-transition: all 0.3s ease;
    --gc-transition-slow: all 0.5s ease;
    --gc-font-primary: 'Tajawal', sans-serif;
    --gc-font-heading: 'Tajawal', sans-serif;
    --gc-container: 1200px;
    --gc-header-height: 80px;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--gc-font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gc-dark);
    background-color: var(--gc-white);
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gc-font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gc-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a {
    color: var(--gc-gold);
    text-decoration: none;
    transition: var(--gc-transition);
}

a:hover,
a:focus {
    color: var(--gc-gold-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--gc-light);
    clip: auto !important;
    clip-path: none;
    color: var(--gc-dark);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    right: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: var(--gc-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--gc-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--gc-radius);
    cursor: pointer;
    transition: var(--gc-transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-gold {
    background-color: var(--gc-gold);
    color: var(--gc-white);
    border-color: var(--gc-gold);
}

.btn-gold:hover,
.btn-gold:focus {
    background-color: var(--gc-gold-dark);
    border-color: var(--gc-gold-dark);
    color: var(--gc-white);
    box-shadow: var(--gc-shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--gc-gold);
    border-color: var(--gc-gold);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--gc-gold);
    color: var(--gc-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ========================================
   Header
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: var(--gc-header-height);
    transition: var(--gc-transition);
    border-bottom: 1px solid var(--gc-border);
}

.site-header.scrolled {
    height: 65px;
    background-color: rgba(17, 17, 17, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--gc-header-height);
    transition: var(--gc-transition);
}

.site-header.scrolled .header-inner {
    height: 65px;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}

.site-branding .custom-logo {
    max-height: 50px;
    width: auto;
}

.site-title-link {
    text-decoration: none;
}

.site-title {
    font-family: var(--gc-font-heading);
    font-size: 1.5rem;
    color: var(--gc-gold);
    margin: 0;
    white-space: nowrap;
}

.site-title-link:hover .site-title {
    color: var(--gc-gold-light);
}

/* Navigation */
.main-navigation .nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation .nav-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--gc-white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--gc-radius);
    transition: var(--gc-transition);
    white-space: nowrap;
}

.main-navigation .nav-menu li a:hover,
.main-navigation .nav-menu li.current-menu-item a {
    color: var(--gc-gold);
    background-color: rgba(198, 167, 94, 0.1);
}

/* Header CTA */
.header-cta {
    flex-shrink: 0;
}

.header-cta .icon-whatsapp {
    flex-shrink: 0;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    cursor: pointer;
    transition: var(--gc-transition);
}

.menu-toggle:hover {
    border-color: var(--gc-gold);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gc-gold);
    transition: var(--gc-transition);
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gc-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, 0.85) 0%,
        rgba(17, 17, 17, 0.7) 50%,
        rgba(17, 17, 17, 0.85) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(198, 167, 94, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(198, 167, 94, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(198, 167, 94, 0.05) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
}

.hero-section .container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: var(--gc-header-height);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--gc-font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--gc-gold);
    margin-bottom: 16px;
    text-shadow: 0 2px 40px rgba(198, 167, 94, 0.2);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--gc-gold-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-section .btn-outline {
    color: var(--gc-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-section .btn-outline:hover {
    background-color: var(--gc-white);
    border-color: var(--gc-white);
    color: var(--gc-dark);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gc-gold);
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   Section Common Styles
   ======================================== */
.about-section,
.services-section,
.portfolio-section,
.why-us-section {
    padding: 100px 0;
}

.about-section,
.why-us-section {
    background-color: var(--gc-white);
}

.services-section,
.portfolio-section {
    background-color: var(--gc-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background-color: rgba(198, 167, 94, 0.1);
    color: var(--gc-gold);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid var(--gc-border);
}

.section-title {
    font-family: var(--gc-font-heading);
    color: var(--gc-dark);
    margin-bottom: 16px;
}

.section-divider {
    display: flex;
    justify-content: center;
}

.section-divider span {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gc-gold-dark), var(--gc-gold), var(--gc-gold-dark));
    border-radius: 2px;
}

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 2;
    color: #444;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--gc-light);
    border-radius: var(--gc-radius);
    border-right: 3px solid var(--gc-gold);
    transition: var(--gc-transition);
}

.feature-item:hover {
    box-shadow: var(--gc-shadow);
    transform: translateX(-5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gc-gold);
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gc-dark);
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    box-shadow: var(--gc-shadow);
    transition: var(--gc-transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--gc-shadow-lg);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gc-transition-slow);
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.08);
}

.service-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gc-dark) 0%, var(--gc-dark-medium) 100%);
    color: var(--gc-gold);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.6), transparent);
    opacity: 0;
    transition: var(--gc-transition);
}

.service-card:hover .service-image-overlay {
    opacity: 1;
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(198, 167, 94, 0.1);
    border-radius: var(--gc-radius);
    color: var(--gc-gold);
    margin-bottom: 20px;
    transition: var(--gc-transition);
}

.service-card:hover .service-icon {
    background-color: var(--gc-gold);
    color: var(--gc-white);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gc-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gc-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--gc-transition);
}

.service-link:hover {
    color: var(--gc-gold-dark);
    gap: 12px;
}

/* ========================================
   Portfolio Section
   ======================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--gc-font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gc-dark);
    background-color: var(--gc-white);
    border: 1px solid var(--gc-gray-light);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--gc-transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gc-gold);
    color: var(--gc-white);
    border-color: var(--gc-gold);
    box-shadow: var(--gc-shadow-gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.portfolio-item {
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    transition: var(--gc-transition);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gc-radius-lg);
    aspect-ratio: 1;
}

.portfolio-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gc-transition-slow);
}

.portfolio-link:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--gc-transition);
    text-align: center;
    padding: 20px;
}

.portfolio-link:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: var(--gc-white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.portfolio-cat {
    color: var(--gc-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.portfolio-zoom {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gc-gold);
    color: var(--gc-white);
    border-radius: 50%;
    transition: var(--gc-transition);
}

.portfolio-zoom:hover {
    transform: scale(1.1);
}

.portfolio-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--gc-gray);
    background-color: var(--gc-white);
    border-radius: var(--gc-radius-lg);
}

.portfolio-empty svg {
    color: var(--gc-gold);
    opacity: 0.4;
    margin-bottom: 20px;
}

.portfolio-empty h3 {
    font-size: 1.3rem;
    color: var(--gc-dark);
    margin-bottom: 8px;
}

/* Portfolio "More" Button */
.portfolio-more {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Single Service Page - Clean & Simple Design
   ======================================== */

/* Service Hero - extends main hero */
.service-hero {
    min-height: 70vh;
}

/* Service Content Section */
.service-content-section {
    padding: 80px 0;
    background: var(--gc-white);
}

.service-content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.service-content-wrapper .entry-content {
    font-size: 1.1rem;
    line-height: 2.1;
    color: #444;
}

.service-content-wrapper .entry-content p {
    margin-bottom: 20px;
}

.service-content-wrapper .entry-content h2,
.service-content-wrapper .entry-content h3,
.service-content-wrapper .entry-content h4 {
    color: var(--gc-dark);
    margin-top: 35px;
    margin-bottom: 18px;
}

.service-content-wrapper .entry-content ul,
.service-content-wrapper .entry-content ol {
    padding-right: 25px;
    margin-bottom: 20px;
}

.service-content-wrapper .entry-content li {
    margin-bottom: 12px;
}

.service-content-wrapper .entry-content img {
    border-radius: var(--gc-radius);
    margin: 25px 0;
}

/* Other Services Section */
.other-services-section {
    padding: 80px 0;
    background: var(--gc-light);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.other-service-card {
    display: block;
    background: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--gc-transition);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.other-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(198,167,94,0.15);
}

.other-service-image {
    height: 200px;
    overflow: hidden;
}

.other-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.other-service-card:hover img {
    transform: scale(1.08);
}

.other-service-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gc-dark) 0%, var(--gc-dark-medium) 100%);
    color: var(--gc-gold);
}

.other-service-info {
    padding: 25px;
}

.other-service-info h3 {
    font-size: 1.15rem;
    color: var(--gc-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.other-service-card:hover h3 {
    color: var(--gc-gold);
}

.other-service-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.other-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gc-gold);
    font-weight: 600;
}

.other-service-link svg {
    transition: transform 0.3s ease;
}

.other-service-card:hover .other-service-link svg {
    transform: translateX(-5px);
}

/* Services Section Enhancements */
.section-subtitle {
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(198,167,94,0.08) 0%, rgba(198,167,94,0.03) 100%);
    border-radius: var(--gc-radius-lg);
    border: 1px solid rgba(198,167,94,0.15);
}

.services-cta p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.services-empty {
    text-align: center;
    padding: 80px 40px;
    background: var(--gc-light);
    border-radius: var(--gc-radius-lg);
}

.services-empty svg {
    color: var(--gc-gold);
    opacity: 0.4;
    margin-bottom: 20px;
}

.services-empty h3 {
    color: var(--gc-dark);
    margin-bottom: 10px;
}

.services-empty p {
    color: #666;
}

.service-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.service-link-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gc-gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--gc-transition);
}

.service-card:hover .service-link-text {
    gap: 12px;
}

/* Responsive Styles for Service Page */
@media (max-width: 768px) {
    .service-hero {
        min-height: auto;
    }

    .service-content-section {
        padding: 60px 0;
    }

    .service-content-wrapper .entry-content {
        font-size: 1rem;
    }

    .other-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .other-service-image {
        height: 180px;
    }
}

/* ========================================
   Portfolio Archive Page
   ======================================== */
.portfolio-page-hero {
    padding-bottom: 50px;
}

.portfolio-page-hero .section-badge {
    margin-bottom: 20px;
}

.portfolio-archive-section {
    padding: 60px 0 100px;
    background-color: var(--gc-light);
}

.portfolio-archive-grid {
    grid-template-columns: repeat(3, 1fr);
}

.portfolio-count {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--gc-gray);
}

.portfolio-count strong {
    color: var(--gc-gold);
}

.portfolio-no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gc-dark) 0%, var(--gc-dark-medium) 100%);
    color: var(--gc-gold);
    opacity: 0.5;
    aspect-ratio: 1;
}

.portfolio-pagination {
    margin-top: 60px;
    margin-bottom: 60px;
}

.portfolio-back-cta {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    box-shadow: var(--gc-shadow);
    border: 1px solid var(--gc-border);
}

.portfolio-back-cta p {
    font-size: 1.15rem;
    color: var(--gc-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.portfolio-back-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-us-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--gc-light);
    border-radius: var(--gc-radius-lg);
    transition: var(--gc-transition);
    border: 1px solid transparent;
}

.why-us-card:hover {
    background-color: var(--gc-white);
    border-color: var(--gc-border);
    box-shadow: var(--gc-shadow);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: rgba(198, 167, 94, 0.1);
    border-radius: 50%;
    color: var(--gc-gold);
    transition: var(--gc-transition);
}

.why-us-card:hover .why-us-icon {
    background-color: var(--gc-gold);
    color: var(--gc-white);
    box-shadow: var(--gc-shadow-gold);
}

.why-us-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--gc-dark);
}

.why-us-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--gc-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, 0.92) 0%,
        rgba(17, 17, 17, 0.85) 100%
    );
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--gc-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--gc-gold);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline {
    color: var(--gc-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-section .btn-outline:hover {
    background-color: var(--gc-white);
    border-color: var(--gc-white);
    color: var(--gc-dark);
}

/* ========================================
   Breadcrumbs
   ======================================== */
.gc-breadcrumbs {
    background: var(--gc-light);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--gc-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--gc-gold);
}

.breadcrumb-item.current span {
    color: var(--gc-dark);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--gc-gold);
    opacity: 0.5;
    display: flex;
    align-items: center;
}

.breadcrumb-separator svg {
    transform: rotate(180deg);
}

/* ========================================
   404 Error Page
   ======================================== */
.error-404-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--gc-light);
}

.error-404-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.error-404-icon {
    color: var(--gc-gold);
    opacity: 0.5;
    margin-bottom: 30px;
}

.error-404-title {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--gc-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.error-404-subtitle {
    font-size: 1.5rem;
    color: var(--gc-dark);
    margin-bottom: 20px;
}

.error-404-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.error-404-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Search Results Page
   ======================================== */
.search-results-section {
    padding: 60px 0 100px;
    background: var(--gc-light);
    min-height: 60vh;
}

.search-header {
    text-align: center;
    margin-bottom: 50px;
}

.search-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--gc-dark);
    margin-bottom: 10px;
}

.search-title span {
    color: var(--gc-gold);
}

.search-count {
    color: #666;
    font-size: 1rem;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.search-result-item {
    display: flex;
    gap: 20px;
    background: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: var(--gc-transition);
}

.search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.search-result-image {
    flex-shrink: 0;
    width: 200px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    padding: 25px 25px 25px 0;
    display: flex;
    flex-direction: column;
}

.search-result-type {
    display: inline-block;
    background: linear-gradient(135deg, rgba(198,167,94,0.15) 0%, rgba(198,167,94,0.05) 100%);
    color: var(--gc-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.search-result-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.search-result-title a {
    color: var(--gc-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-title a:hover {
    color: var(--gc-gold);
}

.search-result-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}

.search-result-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gc-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.search-result-link:hover {
    gap: 10px;
}

.search-no-results {
    text-align: center;
    padding: 60px 40px;
    background: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.search-no-results svg {
    color: var(--gc-gold);
    opacity: 0.4;
    margin-bottom: 25px;
}

.search-no-results h2 {
    font-size: 1.4rem;
    color: var(--gc-dark);
    margin-bottom: 12px;
}

.search-no-results p {
    color: #666;
    margin-bottom: 25px;
}

.search-pagination {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .search-results-grid {
        grid-template-columns: 1fr;
    }

    .search-result-item {
        flex-direction: column;
    }

    .search-result-image {
        width: 100%;
        height: 200px;
    }

    .search-result-content {
        padding: 20px;
    }

    .error-404-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background-color: var(--gc-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 2px solid var(--gc-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .custom-logo {
    max-height: 45px;
    width: auto;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: var(--gc-font-heading);
    font-size: 1.5rem;
    color: var(--gc-gold);
    margin-bottom: 16px;
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-family: var(--gc-font-heading);
    font-size: 1.15rem;
    color: var(--gc-gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gc-gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--gc-transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--gc-gold);
    transform: translateX(-5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--gc-gold);
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
    color: var(--gc-gold);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--gc-transition);
}

.footer-social a:hover {
    background-color: var(--gc-gold);
    color: var(--gc-white);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: var(--gc-white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--gc-transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--gc-white);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gc-gold);
    color: var(--gc-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--gc-transition);
    box-shadow: var(--gc-shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--gc-gold-dark);
    transform: translateY(-3px);
}

/* ========================================
   Lightbox
   ======================================== */
.gc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--gc-transition);
}

.gc-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--gc-radius);
}

.lightbox-caption {
    color: var(--gc-white);
    margin-top: 16px;
    font-size: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--gc-white);
    cursor: pointer;
    padding: 12px;
    transition: var(--gc-transition);
    opacity: 0.7;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    color: var(--gc-gold);
}

.lightbox-close {
    top: 20px;
    left: 20px;
}

.lightbox-prev {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   Page Hero (Inner pages)
   ======================================== */
.page-hero {
    background-color: var(--gc-dark);
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 2px solid var(--gc-gold);
}

.page-hero-title {
    font-family: var(--gc-font-heading);
    color: var(--gc-gold);
    margin-bottom: 12px;
}

.page-hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-meta {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.page-hero-meta time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.term-badge {
    display: inline-block;
    padding: 4px 14px;
    background-color: rgba(198, 167, 94, 0.2);
    color: var(--gc-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========================================
   Content Area
   ======================================== */
.content-area {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.content-grid.full-width {
    grid-template-columns: 1fr;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    box-shadow: var(--gc-shadow);
    transition: var(--gc-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gc-shadow-lg);
}

.post-card-image {
    overflow: hidden;
    height: 220px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gc-transition-slow);
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 24px;
}

.post-card-meta {
    margin-bottom: 10px;
}

.post-card-meta time {
    font-size: 0.8rem;
    color: var(--gc-gray);
}

.post-card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.post-card-title a {
    color: var(--gc-dark);
}

.post-card-title a:hover {
    color: var(--gc-gold);
}

.post-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gc-gold);
    font-weight: 600;
    font-size: 0.85rem;
}

.post-card-link:hover {
    gap: 10px;
}

/* Single Content */
.single-content,
.page-content {
    background-color: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    box-shadow: var(--gc-shadow);
}

.single-featured-image img,
.page-featured-image img {
    width: 100%;
    height: auto;
}

.entry-content {
    padding: 40px;
    font-size: 1.05rem;
    line-height: 2;
    color: #333;
}

.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.entry-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content img {
    border-radius: var(--gc-radius);
    margin: 20px 0;
}

.entry-content ul,
.entry-content ol {
    padding-right: 24px;
    margin-bottom: 20px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 8px;
}

/* Post Navigation */
.post-navigation {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid var(--gc-gray-light);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: left;
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gc-gray);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.post-navigation a {
    color: var(--gc-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.post-navigation a:hover {
    color: var(--gc-gold);
}

/* Related Projects */
.related-projects {
    margin-top: 60px;
}

.related-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--gc-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    box-shadow: var(--gc-shadow);
    transition: var(--gc-transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gc-shadow-lg);
}

.related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gc-transition-slow);
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-card-title {
    padding: 16px;
    font-size: 1rem;
}

.related-card-title a {
    color: var(--gc-dark);
}

.related-card-title a:hover {
    color: var(--gc-gold);
}

/* Pagination */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gc-white);
    color: var(--gc-dark);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--gc-gray-light);
    transition: var(--gc-transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--gc-gold);
    color: var(--gc-white);
    border-color: var(--gc-gold);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results h2 {
    margin-bottom: 12px;
}

.no-results p {
    color: var(--gc-gray);
}

/* Sidebar Widgets */
.sidebar-widgets .widget {
    background-color: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--gc-shadow);
}

.widget-title {
    font-family: var(--gc-font-heading);
    font-size: 1.15rem;
    color: var(--gc-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gc-gold);
}

/* Archive Grid */
.archive-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ========================================
   Scroll Animations
   ======================================== */
[data-animate] {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Only apply hidden state when JS is active */
.js-enabled [data-animate] {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled [data-animate="fade-right"] {
    transform: translateX(30px);
}

.js-enabled [data-animate="fade-left"] {
    transform: translateX(-30px);
}

[data-animate].animated,
.js-enabled [data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --gc-header-height: 70px;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: var(--gc-header-height);
        right: 0;
        left: 0;
        background-color: var(--gc-dark);
        border-top: 1px solid var(--gc-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-navigation.active {
        max-height: 400px;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .main-navigation .nav-menu li a {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .header-cta {
        display: none;
    }

    /* Hero */
    .hero-section {
        background-attachment: scroll;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 30px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .portfolio-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-back-actions {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Why Us */
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Content */
    .content-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .entry-content {
        padding: 24px;
    }

    /* CTA */
    .cta-section {
        background-attachment: scroll;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .lightbox-prev {
        right: auto;
        left: 60%;
    }

    .lightbox-next {
        left: 20%;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ========================================
   Fallback Menu Styles
   ======================================== */
.gc-fallback-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gc-fallback-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--gc-white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--gc-radius);
    transition: var(--gc-transition);
}

.gc-fallback-menu li a:hover {
    color: var(--gc-gold);
    background-color: rgba(198, 167, 94, 0.1);
}

/* ========================================
   Professional Service Page - High-Converting Layout
   صفحة الخدمة التسويقية الاحترافية
   ======================================== */

/* ----------------------------------------
   Service Hero Section
   ---------------------------------------- */
.srv-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gc-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: var(--gc-header-height);
}

.srv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.75) 0%,
        rgba(17, 17, 17, 0.6) 40%,
        rgba(17, 17, 17, 0.85) 100%
    );
    z-index: 1;
}

.srv-hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(198, 167, 94, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(198, 167, 94, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(198, 167, 94, 0.05) 2px, transparent 2px);
    background-size: 80px 80px, 120px 120px, 160px 160px;
    animation: heroPatternFloat 25s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes heroPatternFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-8px) translateX(4px); }
    50% { transform: translateY(-4px) translateX(-4px); }
    75% { transform: translateY(-12px) translateX(2px); }
}

.srv-hero .container {
    position: relative;
    z-index: 3;
}

.srv-hero-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px;
}

.srv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.2) 0%, rgba(198, 167, 94, 0.08) 100%);
    color: var(--gc-gold);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(198, 167, 94, 0.3);
    backdrop-filter: blur(10px);
}

.srv-hero-badge svg {
    flex-shrink: 0;
}

.srv-hero-title {
    font-family: var(--gc-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--gc-gold);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(198, 167, 94, 0.25);
    letter-spacing: 1px;
    line-height: 1.2;
}

.srv-hero-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--gc-gold-light);
    margin-bottom: 16px;
    font-weight: 400;
    opacity: 0.95;
}

.srv-hero-excerpt {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.srv-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.srv-btn-primary,
.srv-btn-secondary {
    min-width: 220px;
}

.btn-xl {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-xxl {
    padding: 20px 48px;
    font-size: 1.15rem;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--gc-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: var(--gc-white);
    border-color: var(--gc-white);
    color: var(--gc-dark);
    transform: translateY(-2px);
}

/* Hero Scroll Indicator */
.srv-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gc-gold);
    opacity: 0.7;
    animation: scrollIndicatorBounce 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: var(--gc-transition);
}

.srv-hero-scroll:hover {
    opacity: 1;
}

.srv-hero-scroll span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes scrollIndicatorBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 1; }
}

/* ----------------------------------------
   Problem & Solution Section
   ---------------------------------------- */
.srv-problem-solution {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gc-white) 0%, var(--gc-light) 100%);
    position: relative;
    overflow: hidden;
}

.srv-problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.srv-ps-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.srv-ps-content {
    position: relative;
}

.srv-ps-title {
    font-family: var(--gc-font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--gc-dark);
    margin-bottom: 24px;
    line-height: 1.5;
}

.srv-ps-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
}

.srv-ps-text p {
    margin-bottom: 20px;
}

.srv-ps-text p:last-child {
    margin-bottom: 0;
}

.srv-ps-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.srv-ps-icon-wrapper {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.2) 0%, rgba(198, 167, 94, 0.08) 100%);
    border-radius: 50%;
    color: var(--gc-gold);
    position: relative;
    box-shadow: 0 20px 60px rgba(198, 167, 94, 0.15);
    z-index: 2;
    border: 2px solid rgba(198, 167, 94, 0.2);
}

.srv-ps-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px dashed rgba(198, 167, 94, 0.3);
    border-radius: 50%;
    animation: iconRotate 20s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.srv-ps-decorative {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.srv-ps-decorative span {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--gc-gold);
    border-radius: 50%;
    opacity: 0.5;
}

.srv-ps-decorative span:nth-child(1) {
    top: 5%;
    right: 25%;
    animation: decorFloat 3s ease-in-out infinite;
}

.srv-ps-decorative span:nth-child(2) {
    bottom: 15%;
    left: 20%;
    width: 16px;
    height: 16px;
    animation: decorFloat 4s ease-in-out infinite 0.5s;
}

.srv-ps-decorative span:nth-child(3) {
    top: 55%;
    right: 5%;
    width: 10px;
    height: 10px;
    animation: decorFloat 3.5s ease-in-out infinite 1s;
}

@keyframes decorFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-15px) scale(1.3); opacity: 0.8; }
}

/* ----------------------------------------
   Features Section
   ---------------------------------------- */
.srv-features {
    padding: 100px 0;
    background-color: var(--gc-dark);
    position: relative;
    overflow: hidden;
}

.srv-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gc-gold), transparent);
}

.srv-features .section-header {
    margin-bottom: 60px;
}

.srv-features .section-title {
    color: var(--gc-white);
}

.srv-features .section-title span {
    color: var(--gc-gold);
}

.srv-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.srv-feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--gc-radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--gc-transition-slow);
}

.srv-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gc-gold), transparent);
    opacity: 0;
    transition: var(--gc-transition);
}

.srv-feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(198, 167, 94, 0.12) 0%, rgba(198, 167, 94, 0.04) 100%);
    border-color: rgba(198, 167, 94, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.srv-feature-card:hover::before {
    opacity: 1;
}

.srv-feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.15) 0%, rgba(198, 167, 94, 0.05) 100%);
    border-radius: 50%;
    color: var(--gc-gold);
    transition: var(--gc-transition);
    border: 1px solid rgba(198, 167, 94, 0.2);
}

.srv-feature-card:hover .srv-feature-icon {
    background: var(--gc-gold);
    color: var(--gc-dark);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(198, 167, 94, 0.3);
}

.srv-feature-title {
    font-family: var(--gc-font-heading);
    font-size: 1.15rem;
    color: var(--gc-white);
    margin-bottom: 14px;
}

.srv-feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 20px;
}

.srv-feature-number {
    font-family: var(--gc-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(198, 167, 94, 0.1);
    position: absolute;
    bottom: 15px;
    left: 20px;
    line-height: 1;
    transition: var(--gc-transition);
}

.srv-feature-card:hover .srv-feature-number {
    color: rgba(198, 167, 94, 0.25);
}

/* ----------------------------------------
   Service Content Section
   ---------------------------------------- */
.srv-content {
    padding: 100px 0;
    background-color: var(--gc-white);
}

.srv-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.srv-content-header {
    text-align: center;
    margin-bottom: 50px;
}

.srv-content-body.entry-content {
    font-size: 1.1rem;
    line-height: 2.2;
    color: #444;
}

.srv-content-body.entry-content p {
    margin-bottom: 24px;
}

.srv-content-body.entry-content h2 {
    font-size: 1.6rem;
    color: var(--gc-dark);
    margin-top: 45px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gc-gold);
}

.srv-content-body.entry-content h3 {
    font-size: 1.3rem;
    color: var(--gc-dark);
    margin-top: 35px;
    margin-bottom: 16px;
}

.srv-content-body.entry-content h4 {
    font-size: 1.15rem;
    color: var(--gc-gold-dark);
    margin-top: 28px;
    margin-bottom: 14px;
}

.srv-content-body.entry-content ul,
.srv-content-body.entry-content ol {
    padding-right: 30px;
    margin-bottom: 24px;
}

.srv-content-body.entry-content li {
    margin-bottom: 14px;
    position: relative;
}

.srv-content-body.entry-content ul li::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: var(--gc-gold);
    border-radius: 50%;
}

.srv-content-body.entry-content blockquote {
    margin: 35px 0;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.08) 0%, rgba(198, 167, 94, 0.02) 100%);
    border-right: 4px solid var(--gc-gold);
    border-radius: 0 var(--gc-radius) var(--gc-radius) 0;
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
}

.srv-content-body.entry-content img {
    border-radius: var(--gc-radius-lg);
    margin: 30px 0;
    box-shadow: var(--gc-shadow);
}

/* ----------------------------------------
   Gallery Section
   ---------------------------------------- */
.srv-gallery {
    padding: 100px 0;
    background-color: var(--gc-light);
}

.srv-gallery .section-header {
    margin-bottom: 50px;
}

.srv-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.srv-gallery-item {
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    transition: var(--gc-transition);
}

.srv-gallery-link {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.srv-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.srv-gallery-item:hover img {
    transform: scale(1.12);
}

.srv-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.2) 0%,
        rgba(17, 17, 17, 0.85) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: var(--gc-transition);
}

.srv-gallery-item:hover .srv-gallery-overlay {
    opacity: 1;
}

.srv-gallery-info {
    text-align: center;
    transform: translateY(20px);
    transition: var(--gc-transition);
}

.srv-gallery-item:hover .srv-gallery-info {
    transform: translateY(0);
}

.srv-gallery-info h3 {
    color: var(--gc-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.srv-gallery-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--gc-gold);
    color: var(--gc-white);
    border-radius: 50%;
    transition: var(--gc-transition);
}

.srv-gallery-zoom:hover {
    transform: scale(1.1);
    background-color: var(--gc-gold-light);
}

.srv-gallery-more {
    text-align: center;
    margin-top: 50px;
}

/* ----------------------------------------
   Other Services Section
   ---------------------------------------- */
.srv-other {
    padding: 100px 0;
    background-color: var(--gc-white);
}

.srv-other .section-header {
    margin-bottom: 50px;
}

.srv-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.srv-other-card {
    display: block;
    background-color: var(--gc-white);
    border-radius: var(--gc-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--gc-transition-slow);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.srv-other-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(198, 167, 94, 0.15);
    border-color: rgba(198, 167, 94, 0.2);
}

.srv-other-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.srv-other-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.srv-other-card:hover .srv-other-image img {
    transform: scale(1.1);
}

.srv-other-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gc-dark) 0%, var(--gc-dark-medium) 100%);
    color: var(--gc-gold);
}

.srv-other-content {
    padding: 30px;
}

.srv-other-content h3 {
    font-family: var(--gc-font-heading);
    font-size: 1.2rem;
    color: var(--gc-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.srv-other-card:hover h3 {
    color: var(--gc-gold);
}

.srv-other-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 18px;
}

.srv-other-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gc-gold);
    font-weight: 600;
    transition: var(--gc-transition);
}

.srv-other-link svg {
    transition: transform 0.3s ease;
}

.srv-other-card:hover .srv-other-link svg {
    transform: translateX(-6px);
}

/* ----------------------------------------
   Final CTA Section
   ---------------------------------------- */
.srv-cta {
    position: relative;
    padding: 120px 0;
    background-color: var(--gc-dark);
    overflow: hidden;
    text-align: center;
}

.srv-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, 1) 0%,
        rgba(26, 26, 26, 1) 50%,
        rgba(17, 17, 17, 1) 100%
    );
}

.srv-cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(198, 167, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(198, 167, 94, 0.06) 0%, transparent 50%);
    opacity: 0.5;
}

.srv-cta .container {
    position: relative;
    z-index: 2;
}

.srv-cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.srv-cta-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.2) 0%, rgba(198, 167, 94, 0.08) 100%);
    color: var(--gc-gold);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(198, 167, 94, 0.3);
}

.srv-cta-title {
    font-family: var(--gc-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gc-gold);
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 4px 20px rgba(198, 167, 94, 0.2);
}

.srv-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.srv-cta-actions {
    margin-bottom: 35px;
}

.srv-cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.srv-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gc-gold);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--gc-transition);
}

.srv-cta-phone:hover {
    color: var(--gc-gold-light);
}

.srv-cta-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.srv-cta-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.srv-cta-hours svg {
    color: var(--gc-gold);
    opacity: 0.7;
}

/* ========================================
   Service Page Responsive Styles
   ======================================== */
@media (max-width: 1024px) {
    .srv-hero {
        min-height: 75vh;
    }

    .srv-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .srv-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .srv-ps-wrapper {
        gap: 40px;
    }

    .srv-ps-icon-wrapper {
        width: 140px;
        height: 140px;
    }

    .srv-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .srv-hero {
        min-height: auto;
        padding: 120px 0 80px;
        background-attachment: scroll;
    }

    .srv-hero-content {
        padding: 20px 15px;
    }

    .srv-hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .srv-hero-title {
        font-size: 2rem;
    }

    .srv-hero-subtitle {
        font-size: 1.05rem;
    }

    .srv-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .srv-btn-primary,
    .srv-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .btn-xl {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-xxl {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .srv-hero-scroll {
        display: none;
    }

    /* Problem Solution */
    .srv-problem-solution {
        padding: 70px 0;
    }

    .srv-ps-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .srv-ps-visual {
        order: -1;
    }

    .srv-ps-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .srv-ps-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .srv-ps-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .srv-ps-content .section-badge {
        display: block;
        text-align: center;
    }

    .srv-ps-text {
        font-size: 1rem;
        text-align: center;
    }

    /* Features */
    .srv-features {
        padding: 70px 0;
    }

    .srv-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .srv-feature-card {
        padding: 30px 25px;
    }

    .srv-feature-icon {
        width: 70px;
        height: 70px;
    }

    .srv-feature-number {
        font-size: 2.5rem;
    }

    /* Content */
    .srv-content {
        padding: 70px 0;
    }

    .srv-content-body.entry-content {
        font-size: 1rem;
    }

    .srv-content-body.entry-content h2 {
        font-size: 1.4rem;
    }

    .srv-content-body.entry-content h3 {
        font-size: 1.2rem;
    }

    /* Gallery */
    .srv-gallery {
        padding: 70px 0;
    }

    .srv-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .srv-gallery-info h3 {
        font-size: 0.95rem;
    }

    .srv-gallery-zoom {
        width: 48px;
        height: 48px;
    }

    /* Other Services */
    .srv-other {
        padding: 70px 0;
    }

    .srv-other-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .srv-other-image {
        height: 200px;
    }

    .srv-other-content {
        padding: 25px;
    }

    /* CTA */
    .srv-cta {
        padding: 80px 0;
    }

    .srv-cta-title {
        font-size: 1.6rem;
    }

    .srv-cta-text {
        font-size: 1rem;
    }

    .srv-cta-contact {
        flex-direction: column;
        gap: 15px;
    }

    .srv-cta-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .srv-hero {
        padding: 100px 0 60px;
    }

    .srv-hero-title {
        font-size: 1.75rem;
    }

    .srv-hero-subtitle {
        font-size: 0.95rem;
    }

    .srv-hero-excerpt {
        font-size: 0.9rem;
    }

    .srv-problem-solution,
    .srv-features,
    .srv-content,
    .srv-gallery,
    .srv-other,
    .srv-cta {
        padding: 50px 0;
    }

    .srv-ps-title {
        font-size: 1.25rem;
    }

    .srv-ps-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .srv-ps-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .srv-gallery-grid {
        grid-template-columns: 1fr;
    }

    .srv-cta-title {
        font-size: 1.4rem;
    }

    .srv-cta-phone,
    .srv-cta-hours {
        font-size: 0.85rem;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .back-to-top,
    .hero-scroll-indicator,
    .menu-toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-overlay,
    .hero-particles {
        display: none;
    }

    .hero-title,
    .section-title {
        color: #000;
    }
}
