/* ============================================
   MODERN HOME RENOVATIONS ORLANDO WEBSITE
   Professional, Clean, Responsive Design
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #47c9e5;
    --primary-dark: #21bee2;
    --primary-light: #6dd5e8;
    --text-dark: #505050;
    --text-light: #8d8d8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e2e2e2;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Raleway', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-light {
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services .section-label {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--text-dark);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.1rem;
    padding: 0.5rem 1.5rem;
    background: transparent !important;
    background-color: transparent !important;
    letter-spacing: 1px;
}

.section-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

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

.btn-primary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.75rem 1.5rem;
}

.dropdown-menu a {
    color: var(--text-dark);
    display: block;
}

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

.header-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--primary-color);
    background-color: rgba(71, 201, 229, 0.1);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 80px;
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 2.5rem;
}

.hero-title-small {
    display: block;
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-title-large {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-carousel-wrapper {
    position: relative;
}

.services-carousel {
    display: block;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    position: relative;
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
    max-width: 800px;
    margin: 0 auto;
}

.service-item-reverse {
    direction: rtl;
}

.service-item-reverse > * {
    direction: ltr;
}

/* Services Navigation Mobile */
.services-nav-mobile {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.service-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.service-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.service-nav-btn:disabled:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.service-content {
    padding: 2rem;
}

.service-category {
    display: block;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://homerenovations-orlando.com/wp-content/uploads/2026/01/bathroom-remodeling-orlando.png?id=9261');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-content {
    text-align: center;
    padding: 2rem 1.5rem;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--text-white);
    background-color: transparent;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-nav:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

/* Gallery Preview */
.gallery-preview {
    padding: 100px 0;
    background-color: var(--text-white);
}

.gallery-preview .section-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Video Player Styles */
.video-player-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* For gallery videos section, ensure proper fit */
.gallery-videos .gallery-video {
    object-fit: contain;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.video-play-button svg {
    width: 32px;
    height: 32px;
    stroke: var(--text-dark);
    fill: var(--text-dark);
}

.video-player-container:hover .video-play-button {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.video-player-container:hover .video-play-button svg {
    stroke: var(--primary-color);
    fill: var(--primary-color);
}

.video-player-container.playing .video-play-button {
    opacity: 0;
    pointer-events: none;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.video-player-container:hover .video-controls,
.video-player-container.playing .video-controls {
    opacity: 1;
}

.video-play-pause,
.video-fullscreen {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 4px;
}

.video-play-pause:hover,
.video-fullscreen:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.video-progress {
    flex: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.video-progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 0.1s linear;
}

.video-player-container.playing .video-play-pause .play-icon {
    display: none;
}

.video-player-container.playing .video-play-pause .pause-icon {
    display: block;
}

.video-player-container:not(.playing) .video-play-pause .pause-icon {
    display: none;
}

/* Values Section */
.values {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.values-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.values .container {
    position: relative;
    z-index: 3;
}

.values-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-item.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.accordion-header svg {
    transition: var(--transition);
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.process-images {
    position: sticky;
    top: 100px;
}

.process-image-slider {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.process-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-image-slide.active {
    opacity: 1;
}

.process-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.process-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.process-dot:hover {
    background-color: var(--primary-light);
    transform: scale(1.2);
}

.process-dot.active {
    background-color: var(--primary-color);
    width: 14px;
    height: 14px;
}

.process-content-wrapper {
    padding: 1rem 0;
}

.process-tabs-container {
    margin-bottom: 3rem;
}

.process-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    flex-wrap: nowrap;
}

.process-tab {
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-secondary);
    min-width: 90px;
    white-space: nowrap;
}

.process-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.process-tab:hover {
    color: var(--text-dark);
}

.process-tab.active {
    color: var(--text-dark);
    font-weight: 700;
}

.process-tab.active::after {
    width: calc(100% - 1.5rem);
    left: 50%;
    transform: translateX(-50%);
}

.process-content {
    min-height: 200px;
}

.process-content-item {
    display: none;
    animation: fadeIn 0.5s ease;
    padding: 0;
}

.process-content-item.active {
    display: block;
}

.process-content-item h3 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.process-content-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-family: var(--font-primary);
}

/* Contact & Estimate Section */
.contact-estimate {
    position: relative;
    padding: 100px 0;
    background-image: url('https://homerenovations-orlando.com/wp-content/uploads/2016/05/IMG-20240521-WA0023.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-white);
    overflow: hidden;
}

.contact-estimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.8) 100%);
    z-index: 1;
}

.contact-estimate-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.contact-info h2:first-child {
    margin-top: 0;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
    color: var(--text-white);
    font-size: 1.1rem;
}

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

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.contact-social a:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.estimate-form {
    background-color: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.estimate-form h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.estimate-form > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form input,
.form select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 0 2.5rem;
    color: var(--text-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-end;
}

.footer-social-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social .social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.footer-social .social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(71, 201, 229, 0.3);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .service-item,
    .process-wrapper,
    .contact-estimate-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item-reverse {
        direction: ltr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title-small {
        font-size: 1.5rem;
    }
    
    .hero-title-large {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--text-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .header-social {
        display: none;
    }
    
    .services-carousel-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .services-carousel {
        display: flex;
        overflow-x: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0;
        order: 1;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        margin-bottom: 0;
        padding-bottom: 0;
        min-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding-right: 0;
        padding-left: 0;
    }
    
    .service-item:not(:last-child)::after {
        display: none;
    }
    
    .service-item-reverse {
        direction: ltr;
    }
    
    .service-image {
        height: 300px;
    }
    
    .services-nav-mobile {
        display: flex;
        order: 2;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-preview .section-title {
        font-size: 1.5rem;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button svg {
        width: 32px;
        height: 32px;
    }
    
    .video-controls {
        padding: 0.75rem;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-images {
        position: relative;
        top: 0;
    }
    
    .process-image-slider {
        height: 400px;
    }
    
    .process-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .process-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .process-tab {
        min-width: 80px;
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .process-content-item h3 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-info {
        align-items: center;
        text-align: center;
    }
    
    .testimonials {
        padding: 40px 0;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .contact-estimate {
        background-attachment: scroll;
    }
    
    .testimonials-slider {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .testimonial-content {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .testimonials-controls {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title-small {
        font-size: 1.25rem;
    }
    
    .hero-title-large {
        font-size: 2rem;
    }
    
    .services,
    .testimonials {
        padding: 30px 0;
        background-attachment: scroll;
    }
    
    .gallery-preview,
    .values,
    .process,
    .contact-estimate {
        padding: 60px 0;
    }
    
    .estimate-form {
        padding: 2rem 1.5rem;
    }
}

/* Touch-friendly mobile interactions */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    .testimonial-nav {
        min-width: 48px;
        min-height: 48px;
    }
    
    .gallery-item {
        touch-action: pan-y;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Page Hero (for Services & Gallery pages) */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.page-hero-title {
    animation: fadeInUp 0.8s ease;
}

.page-hero-subtitle {
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

/* Services Intro Section */
.services-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--text-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 50%, transparent);
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: rgba(71, 201, 229, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detail Page */
.services-detail {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(71, 201, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(71, 201, 229, 0.03) 0%, transparent 50%);
    background-size: 100% 100%;
}

.services-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(71, 201, 229, 0.2) 50%, transparent);
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
}

.service-detail-item::after {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color) 50%, transparent);
}

.service-detail-item:last-child::after {
    display: none;
}

.service-detail-item:hover {
    transform: none;
}

.service-detail-item:hover .service-detail-image {
    transform: scale(1.03);
}

.service-detail-item:hover .service-detail-content {
    transform: translateX(5px);
}

.service-detail-item-reverse:hover .service-detail-content {
    transform: translateX(-5px);
}

.service-detail-item-reverse {
    direction: rtl;
}

.service-detail-item-reverse > * {
    direction: ltr;
}

.service-detail-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.service-detail-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(71, 201, 229, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-detail-item:hover .service-image-overlay {
    opacity: 1;
}

.service-detail-content {
    padding: 2rem 0;
    transition: var(--transition);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(71, 201, 229, 0.1);
    border-radius: 20px;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.service-features li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    padding-left: 3rem;
    color: var(--primary-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(71, 201, 229, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.service-features li:hover::before {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.service-detail-content .btn {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(71, 201, 229, 0.25);
    transition: all 0.3s ease;
}

.service-detail-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 201, 229, 0.35);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--text-white);
    position: relative;
}

.gallery-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.gallery-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (min-width: 768px) {
    .gallery-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item-full {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f5f5f5;
}

.gallery-item-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image-full {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-item-full:hover .gallery-image-full {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item-full:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item-full:hover .gallery-item-icon {
    transform: scale(1);
}

.gallery-item-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

/* Load More Button */
.gallery-load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    width: 100%;
}

.gallery-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 201, 229, 0.3);
}

.gallery-load-more-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 201, 229, 0.4);
}

.gallery-load-more-btn:active {
    transform: translateY(0);
}

.gallery-load-more-btn svg {
    transition: transform 0.3s ease;
}

.gallery-load-more-btn:hover svg {
    transform: translateY(2px);
}

.gallery-load-more-btn.hidden {
    display: none;
}

/* Gallery Videos */
.gallery-videos {
    padding: 100px 0;
    background-color: var(--text-white);
    position: relative;
}

.gallery-videos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-videos-label {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.gallery-videos .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
    font-family: var(--font-secondary);
}

.gallery-videos-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1200px) {
    .videos-grid {
        gap: 2.5rem;
    }
}

.video-item {
    text-align: center;
    background-color: var(--text-white);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-item .video-player-container {
    position: relative;
    margin-bottom: 0;
    aspect-ratio: 16/9;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: none;
    background-color: #000;
    width: 100%;
    min-height: 0;
    flex-shrink: 0;
}

.video-item .video-player-container .gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-item h3 {
    display: none;
}

.video-item h3 {
    font-size: 1.375rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 0;
    font-family: var(--font-secondary);
    letter-spacing: -0.3px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.4s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(71, 201, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(71, 201, 229, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 201, 229, 0.3);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 201, 229, 0.4);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
    border-color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Gallery Navigation Mobile */
.gallery-nav-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .services-intro {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-detail-item {
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
        gap: 2rem;
    }
    
    .service-detail-item::after {
        bottom: -2rem;
    }
    
    .service-detail-item-reverse {
        direction: ltr;
    }
    
    .service-detail-item:hover .service-detail-content {
        transform: none;
    }
    
    .service-detail-image-wrapper {
        height: 300px;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .gallery-section,
    .gallery-videos {
        padding: 60px 0;
    }
    
    .gallery-videos-header {
        margin-bottom: 2.5rem;
    }
    
    .gallery-videos-label {
        font-size: 0.75rem;
        letter-spacing: 8px;
        margin-bottom: 0.75rem;
    }
    
    .gallery-section .section-title,
    .gallery-videos .section-title {
        font-size: 2rem;
    }
    
    .gallery-videos-divider {
        width: 50px;
        height: 3px;
    }
    
    .gallery-load-more-container {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .gallery-load-more-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
    
    .gallery-grid-full {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item-full {
        border-radius: 15px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-item {
        padding: 1rem;
    }
    
    .video-item h3 {
        font-size: 1.125rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-buttons,
    .testimonials-controls {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
}

