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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
    transition: opacity 0.3s ease;
}

/* Page Transition Styles */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

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

/* Smooth page transitions */

body.page-transition {
    opacity: 0;
}

body.page-transition.loaded {
    opacity: 1;
}

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

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #D4AF37;
    padding: 12px 24px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo a:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

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

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: #D4AF37;
}

.nav-cta {
    margin-left: 16px;
}



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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

/* Fallback for browsers that don't support video */
.video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile optimization for video */
@media (max-width: 768px) {
    .video-bg {
        object-position: center;
    }
    /* Hide contact form on mobile devices */
    .hero .contact-form {
        display: none;
    }
    /* Add more space between header and hero on mobile */
    .hero {
        padding-top: 120px;
    }
    /* Remove paragraph and increase heading size on mobile */
    .hero .hero-content p {
        display: none;
    }
    .hero .hero-content h1 {
        font-size: 42px;
        margin-bottom: 30px;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: white;
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-item i {
    color: #D4AF37;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-form {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin-top: 50px;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header h3 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group select:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

.form-group select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.scroll-indicator span {
    font-size: 14px;
    opacity: 0.8;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(34, 197, 94, 0.2);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Mobile - Single column */
@media (max-width: 768px) {
    .services-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .service-item {
        padding: 32px 24px;
        min-height: 350px;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #D4AF37;
}

.privacy-section h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h3 i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.privacy-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.privacy-section li {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 8px;
}

.privacy-section strong {
    color: #1f2937;
    font-weight: 600;
}

.contact-info {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 3px solid #D4AF37;
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #D4AF37;
    width: 16px;
}

/* Mobile responsive for privacy policy */
@media (max-width: 768px) {
    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    
    .contact-info {
        padding: 15px;
    }
}

/* Form Success and Error Messages */
.form-success,
.form-error {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-success {
    background-color: #d1fae5;
    border: 1px solid #DAA520;
    color: #8B6914;
}

.form-success i {
    color: #DAA520;
    font-size: 18px;
    margin-top: 2px;
}

.form-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.form-error i {
    color: #ef4444;
    font-size: 18px;
    margin-top: 2px;
}

.form-error ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.form-error li {
    margin-bottom: 5px;
}

/* Spinner animation for form submission */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Desktop only - 2 columns */
@media (min-width: 769px) {
    .services-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}



.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.service-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
    transition: color 0.4s ease;
}

.service-item:hover .service-content h3 {
    color: #D4AF37;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
    transition: color 0.4s ease;
}

.service-item:hover .service-content p {
    color: #374151;
}

.service-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-item:hover .service-content li {
    color: #374151;
}

.service-content li i {
    color: #D4AF37;
    font-size: 12px;
    transition: all 0.3s ease;
}

.service-item:hover .service-content li i {
    transform: scale(1.2);
    color: #B8860B;
}

.service-btn {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.service-btn:hover {
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* Video Wheel Section */
.video-wheel {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-carousel {
    position: relative;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 80px;
}

.video-wheel-container {
    display: flex;
    overflow: visible;
    border-radius: 20px;
    position: relative;
    height: 500px;
    align-items: center;
    justify-content: center;
}

.video-item {
    min-width: 70%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0.4;
    transform: scale(0.7);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(0.7);
}

.video-item.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-item.prev {
    opacity: 0.6;
    transform: translate(-120%, -50%) scale(0.8);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-item.next {
    opacity: 0.6;
    transform: translate(20%, -50%) scale(0.8);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-item video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.video-caption {
    padding: 25px;
    text-align: center;
}

.video-caption h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.video-caption p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Carousel Navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-arrow i {
    font-size: 18px;
    color: #333;
}



.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Video Dots */
.video-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #D4AF37;
    transform: scale(1.2);
}

.dot:hover {
    background: #B8860B;
}

/* Testimonial Carousel Section */
.testimonial-wheel {
    padding: 100px 0;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
}

.testimonial-wheel .section-header h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-wheel .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-carousel {
    position: relative;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 80px;
}

.testimonial-wheel-container {
    display: flex;
    overflow: visible;
    border-radius: 20px;
    position: relative;
    height: 300px;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    min-width: 70%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0.4;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(0.7);
}

.testimonial-item.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-item.prev {
    opacity: 0.6;
    transform: translate(-120%, -50%) scale(0.8);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-item.next {
    opacity: 0.6;
    transform: translate(20%, -50%) scale(0.8);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #FFD700;
    font-size: 18px;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* Mobile Responsive for Video and Testimonial Wheels */
@media (max-width: 768px) {
    .video-carousel {
        max-width: 100%;
        margin-left: 10px;
        margin-right: 10px;
        padding: 0 50px;
    }
    
    .video-wheel-container {
        height: 400px;
    }
    
    .video-item {
        min-width: 85%;
        width: 85%;
    }
    
    .video-item.prev {
        transform: translate(-110%, -50%) scale(0.75);
    }
    
    .video-item.next {
        transform: translate(10%, -50%) scale(0.75);
    }
    
    .video-item video {
        height: 300px;
    }
    
    .video-caption {
        padding: 20px;
    }
    
    .video-caption h3 {
        font-size: 20px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 16px;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .testimonial-carousel {
        max-width: 100%;
        margin-left: 10px;
        margin-right: 10px;
        padding: 0 50px;
    }
    
    .testimonial-wheel-container {
        height: 300px;
        margin-top: 20px;
    }
    
    .testimonial-item {
        min-width: 85%;
        width: 85%;
    }
    
    .testimonial-item.prev {
        transform: translate(-110%, -50%) scale(0.75);
    }
    
    .testimonial-item.next {
        transform: translate(10%, -50%) scale(0.75);
    }
    
    .testimonial-wheel .section-header {
        margin-bottom: 60px;
    }
    
    .testimonial-wheel .section-header p {
        margin-bottom: 50px;
    }
    
    .testimonial-wheel-container {
        height: 300px;
        margin-top: 20px;
        position: relative;
        top: 30px;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #333;
}

.about-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Hide about stats on mobile */
@media (max-width: 768px) {
    .about-stats {
        display: none;
    }
    
    /* Reposition about image on mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: 2;
        margin: 20px 0;
        display: block !important;
    }
    
    .about-text {
        order: 1;
    }
    
    /* Ensure image is visible and properly sized on mobile */
    .about-image .image-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-image .image-container img {
        width: 100%;
        height: auto;
        display: block;
    }
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 8px;
}

.stat p {
    color: #666;
    font-size: 14px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 14px;
}

.about-image {
    position: relative;
}

.image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.contact-item p {
    color: #666;
    font-size: 14px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

.contact-form-large {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-large h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
    text-align: center;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D4AF37;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-header h2 {
        font-size: 40px;
    }
    
    .about-text h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Reduced from 80px for mobile */
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 16px;
        gap: 16px;
        z-index: 1000;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 8px 0 0 16px;
        flex-direction: column;
        gap: 8px;
        display: none;
        z-index: 1000;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: flex;
    }
    
    .dropdown-item {
        padding: 8px 0;
        border-radius: 0;
        font-weight: 500;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .desktop-only {
        display: none;
    }
    
    .nav-cta {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .desktop-only {
        display: inline-block;
    }
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    

    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .contact-form,
    .contact-form-large {
        padding: 24px;
    }
    
    .nav-cta {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .nav-links {
        gap: 12px;
    }
}

/* About Learn More Button */
.about-learn-more {
    margin-top: 32px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 0;
    margin: 0;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #333;
}

.modal-content {
    padding: 32px;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.modal-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .modal-content p {
        font-size: 15px;
    }
}

/* Diamond Care Service Items - Smaller Size */
.diamond-care .services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.diamond-care .service-item {
    min-height: 180px;
    padding: 20px;
}

.diamond-care .service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.diamond-care .service-content p {
    font-size: 14px;
    line-height: 1.5;
}

.diamond-care .service-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .diamond-care .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .diamond-care .service-item {
        min-height: 150px;
        padding: 15px;
    }
    
    .diamond-care .service-content h3 {
        font-size: 16px;
    }
    
    .diamond-care .service-content p {
        font-size: 13px;
    }
    
    .diamond-care .service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }
}

/* Service Page Styles */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #333;
}

.service-hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-overview {
    padding: 80px 0;
}

.diamond-care {
    padding: 80px 0;
    background: #f8fafc;
}

.diamond-care-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diamond-care-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.diamond-care-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.diamond-care-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.diamond-care-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.diamond-care-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose {
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-choose-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.why-choose-icon i {
    font-size: 28px;
    color: white;
}

.why-choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.why-choose-card p {
    color: #666;
    line-height: 1.6;
}

.testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
}

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

.testimonial-text i {
    font-size: 48px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.testimonial-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 14px;
}

.service-areas {
    padding: 80px 0;
    background: #f8fafc;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.area-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.area-card i {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 16px;
}

.area-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for Service Page */
@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-hero-text h1 {
        font-size: 32px;
    }
    
    .diamond-care-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .diamond-care-text h2 {
        font-size: 28px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-text h1 {
        font-size: 28px;
    }
    
    .diamond-care-text h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #333;
}

.contact-hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.contact-info-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-info-icon i {
    font-size: 28px;
    color: white;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.contact-info-card p {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 8px;
}

.contact-info-card p a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card span {
    color: #666;
    font-size: 14px;
}

.service-areas-contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.contact-form-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-form-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-features .feature i {
    color: #D4AF37;
    font-size: 18px;
}

.contact-form-features .feature span {
    color: #666;
    font-weight: 500;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    background: transparent;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    background-color: #333 !important;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-hero-text h1 {
        font-size: 32px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-text h2 {
        font-size: 28px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-text h1 {
        font-size: 28px;
    }
    
    .contact-form-text h2 {
        font-size: 24px;
    }
}

/* Installation Gallery Styles */
.installation-gallery {
    padding: 80px 0;
    background: #f8fafc;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile responsive gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
} 





.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.service-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
    transition: color 0.4s ease;
}

.service-item:hover .service-content h3 {
    color: #D4AF37;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
    transition: color 0.4s ease;
}

.service-item:hover .service-content p {
    color: #374151;
}

.service-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-item:hover .service-content li {
    color: #374151;
}

.service-content li i {
    color: #D4AF37;
    font-size: 12px;
    transition: all 0.3s ease;
}

.service-item:hover .service-content li i {
    transform: scale(1.2);
    color: #B8860B;
}

.service-btn {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.service-btn:hover {
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #333;
}

.about-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Hide about stats on mobile */
@media (max-width: 768px) {
    .about-stats {
        display: none;
    }
    
    /* Reposition about image on mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: 2;
        margin: 20px 0;
        display: block !important;
    }
    
    .about-text {
        order: 1;
    }
    
    /* Ensure image is visible and properly sized on mobile */
    .about-image .image-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-image .image-container img {
        width: 100%;
        height: auto;
        display: block;
    }
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 8px;
}

.stat p {
    color: #666;
    font-size: 14px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 14px;
}

.about-image {
    position: relative;
}

.image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.contact-item p {
    color: #666;
    font-size: 14px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

.contact-form-large {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-large h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
    text-align: center;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D4AF37;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-header h2 {
        font-size: 40px;
    }
    
    .about-text h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 16px;
        gap: 16px;
        z-index: 1000;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 8px 0 0 16px;
        flex-direction: column;
        gap: 8px;
        display: none;
        z-index: 1000;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: flex;
    }
    
    .dropdown-item {
        padding: 8px 0;
        border-radius: 0;
        font-weight: 500;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .desktop-only {
        display: none;
    }
    
    .nav-cta {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .desktop-only {
        display: inline-block;
    }
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    

    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .contact-form,
    .contact-form-large {
        padding: 24px;
    }
    
    .nav-cta {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .nav-links {
        gap: 12px;
    }
}

/* About Learn More Button */
.about-learn-more {
    margin-top: 32px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 0;
    margin: 0;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #333;
}

.modal-content {
    padding: 32px;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.modal-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .modal-content p {
        font-size: 15px;
    }
}

/* Diamond Care Service Items - Smaller Size */
.diamond-care .services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.diamond-care .service-item {
    min-height: 180px;
    padding: 20px;
}

.diamond-care .service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.diamond-care .service-content p {
    font-size: 14px;
    line-height: 1.5;
}

.diamond-care .service-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .diamond-care .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .diamond-care .service-item {
        min-height: 150px;
        padding: 15px;
    }
    
    .diamond-care .service-content h3 {
        font-size: 16px;
    }
    
    .diamond-care .service-content p {
        font-size: 13px;
    }
    
    .diamond-care .service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }
}

/* Service Page Styles */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #333;
}

.service-hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-overview {
    padding: 80px 0;
}

.diamond-care {
    padding: 80px 0;
    background: #f8fafc;
}

.diamond-care-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diamond-care-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.diamond-care-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.diamond-care-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.diamond-care-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.diamond-care-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose {
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-choose-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.why-choose-icon i {
    font-size: 28px;
    color: white;
}

.why-choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.why-choose-card p {
    color: #666;
    line-height: 1.6;
}

.testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
}

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

.testimonial-text i {
    font-size: 48px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.testimonial-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 14px;
}

.service-areas {
    padding: 80px 0;
    background: #f8fafc;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.area-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.area-card i {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 16px;
}

.area-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for Service Page */
@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-hero-text h1 {
        font-size: 32px;
    }
    
    .diamond-care-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .diamond-care-text h2 {
        font-size: 28px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-text h1 {
        font-size: 28px;
    }
    
    .diamond-care-text h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #333;
}

.contact-hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.contact-info-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-info-icon i {
    font-size: 28px;
    color: white;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.contact-info-card p {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 8px;
}

.contact-info-card p a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card span {
    color: #666;
    font-size: 14px;
}

.service-areas-contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.contact-form-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-form-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-features .feature i {
    color: #D4AF37;
    font-size: 18px;
}

.contact-form-features .feature span {
    color: #666;
    font-weight: 500;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    background: transparent;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    background-color: #333 !important;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-hero-text h1 {
        font-size: 32px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-text h2 {
        font-size: 28px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-text h1 {
        font-size: 28px;
    }
    
    .contact-form-text h2 {
        font-size: 24px;
    }
}

/* Installation Gallery Styles */
.installation-gallery {
    padding: 80px 0;
    background: #f8fafc;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile responsive gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
} 

 