/* Mavryck Events Website - Redesigned Styles */

/* CSS Variables for consistent theming - UPDATE COLORS HERE */
:root {
    --primary-orange: #FF6B00;        /* Main brand color - UPDATE THIS */
    --primary-orange-dark: #E55A00;   /* Darker version for hover states */
    --primary-purple: #7b1fa2;        /* Purple accent color */
    --primary-blue: #2196f3;          /* Blue accent color */
    --dark-navy: #1a1a1a;             /* Dark background color */
    --text-dark: #222222;             /* Main text color */
    --text-muted: #666666;            /* Secondary text color */
    --text-light: #f2f2f2;            /* Light text for dark backgrounds */
    --bg-white: #ffffff;              /* White background */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);     /* Light shadow */
    --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.1);   /* Medium shadow */
    --shadow-hover: 0 12px 25px rgba(0, 0, 0, 0.15);  /* Hover shadow */
    --border-radius: 1rem;            /* Increased border radius for smoother curves */
    --border-radius-sm: 0.75rem;      /* Small border radius */
    --border-radius-lg: 1.5rem;       /* Large border radius */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);  /* Smooth transition */
    --transition-fast: all 0.3s ease; /* Fast transition */
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

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

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title .black {
    color: var(--text-dark);
}

.section-title .orange {
    color: var(--primary-orange);
}

.section-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background-color: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(123, 31, 162, 0.9) 25%, 
        rgba(255, 107, 0, 0.85) 75%, 
        rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(5deg) scale(1.1);
}

.nav-logo i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.nav-logo-text {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.nav-logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
}

.nav-link:hover {
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

/* Active link animation */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.98) 0%, 
        rgba(123, 31, 162, 0.95) 50%, 
        rgba(255, 107, 0, 0.9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem;
    margin: 0 1rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.25rem;
    margin: 0.5rem 0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 25%, #FF6B00 75%, #FF8F00 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 120px;
    position: relative;
    top: 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-premium {
    color: var(--primary-orange);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .orange {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card.orange {
    border: 2px solid var(--primary-orange);
}

.stat-card.purple {
    border: 2px solid #9c27b0;
}

.stat-card.blue {
    border: 2px solid #2196f3;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Services Section - MANAGE SERVICE CARD STYLES */
.services-section {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Service icon colors - ADD NEW COLORS HERE IF NEEDED */
.service-icon.blue { background-color: #2196F3; }
.service-icon.green { background-color: #4CAF50; }
.service-icon.red { background-color: #F44336; }
.service-icon.orange { background-color: var(--primary-orange); }
.service-icon.aqua { background-color: #00BCD4; }
.service-icon.pink { background-color: #E91E63; }
.service-icon.purple { background-color: #9C27B0; }
.service-icon.indigo { background-color: #3F51B5; }
.service-icon.teal { background-color: #009688; }
.service-icon.yellow { background-color: #FFEB3B; }
.service-icon.rose { background-color: #FF69B4; }
.service-icon.cyan { background-color: #00CED1; }
.service-icon.lime { background-color: #CDDC39; }
/* To add new colors: .service-icon.newcolor { background-color: #HEXCODE; } */

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8F00 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-banner .btn-secondary {
    background-color: white;
    color: var(--primary-orange);
    border: none;
}

.cta-banner .btn-secondary:hover {
    background-color: var(--bg-white);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.gallery-filter {
    padding: 0.5rem 1rem;
    border: 2px solid #ddd;
    background: white;
    color: var(--text-dark);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.gallery-filter:hover,
.gallery-filter.active {
    background-color: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

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

.gallery-overlay h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.view-gallery-btn {
    text-align: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.view-gallery-btn .btn-primary {
    background-color: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.view-gallery-btn .btn-primary:hover {
    background-color: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Star Rating Component Styles - Based on provided example - MANAGE STAR RATINGS */
.testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
}

.testimonial-rating .stars {
    display: flex;
    position: relative;
}

.testimonial-rating .star {
    font-size: 20px;
    color: #ddd;  /* Empty star color - CHANGE IF NEEDED */
    cursor: default;
    transition: color 0.2s ease;
    user-select: none;
}

.testimonial-rating .star:hover,
.testimonial-rating .star.active {
    color: #ffc107;  /* Filled star color - CHANGE IF NEEDED */
}

.testimonial-rating .rating-info {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

.testimonial-rating .rating-value {
    font-weight: bold;
    color: #333;
}

.testimonial-content {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-orange);
    margin-right: 1rem;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-item-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d1b69 25%, 
        #7b1fa2 50%, 
        #FF6B00 75%, 
        #1a1a1a 100%);
    color: white;
    padding: 2rem 0 1rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-purple));
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: inline-block;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 107, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(8px);
    padding-left: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1.5rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    margin: 1.5rem 1rem 0;
    padding: 1rem;
}
/* Footer decorative elements */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="rgba(255,255,255,0.1)"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="rgba(255,255,255,0.05)"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="rgba(255,255,255,0.03)"></path></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

/* Footer glow effect */
.footer::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    z-index: 0;
}

/* Enhanced button styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

/* Enhanced service card with gradient border */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple), var(--primary-blue));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.1;
}

/* Enhanced testimonial card */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonial-card:hover::before {
    opacity: 0.05;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Enhanced gallery item */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 1;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-orange), var(--primary-purple)) border-box;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius-lg);
}

/* Enhanced form inputs */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: white;
    color: #333;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

/* Enhanced stats cards */
.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: white;
    min-width: 140px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Enhanced hero section */
.hero {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 25%, #FF6B00 75%, #FF8F00 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 120px;
    position: relative;
    top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" preserveAspectRatio="none"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23grad1)" /><circle cx="800" cy="600" r="200" fill="url(%23grad1)" /><circle cx="1000" cy="100" r="100" fill="url(%23grad1)" /></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

/* Enhanced CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF8F00 50%, var(--primary-purple) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin: 3rem 1rem;
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.3);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300" preserveAspectRatio="none"><path d="M0,150Q300,50 600,150T1200,150V300H0Z" fill="rgba(255,255,255,0.1)"></path></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
}

/* Enhanced gallery filter buttons */
.gallery-filter {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    background: white;
    color: var(--text-dark);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.gallery-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.gallery-filter:hover::before {
    left: 100%;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

/* Enhanced mobile menu button */
.mobile-menu-button {
    display: none;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.mobile-menu-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Enhanced social media icons */
.footer-section a[i][data-lucide] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: var(--transition);
    display: inline-block;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-section a[i][data-lucide]:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.footer-section a[i][data-lucide]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
}

.footer-section a[i][data-lucide]:hover::before {
    width: 80px;
    height: 80px;
}

/* Enhanced contact form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

/* Enhanced section titles */
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-purple));
    border-radius: 2px;
}

/* Enhanced service icon */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

/* Enhanced cursor glow effect */
.cursor-glow {
    cursor: pointer;
    position: relative;
}

.cursor-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
}

.cursor-glow:hover::before {
    width: 120px;
    height: 120px;
}

/* Enhanced loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* Enhanced navbar scroll effect */
.navbar.scrolled {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.98) 0%, 
        rgba(123, 31, 162, 0.95) 25%, 
        rgba(255, 107, 0, 0.9) 75%, 
        rgba(26, 26, 26, 0.98) 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
}

/* Section spacing */
.section-spacing {
    height: 3rem;
    background: transparent;
}

/* Enhanced responsive design system */

/* Very large desktops (1400px and above) */
@media (min-width: 1400px) {
    .container,
    .nav-container,
    .footer-container,
    .hero-content {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-stats {
        gap: 3rem;
    }
    
    .stat-card {
        min-width: 180px;
        padding: 2rem;
    }
}

/* Large desktops (1200px - 1400px) */
@media (max-width: 1400px) {
    .container,
    .nav-container,
    .footer-container,
    .hero-content {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* Medium tablets (992px - 1024px) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-title h2 {
        font-size: 2.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 0.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .contact-container {
        gap: 1.5rem;
    }
}

/* Large tablets and small desktops (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-card {
        min-width: 140px;
        padding: 1.25rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Tablets (576px - 768px) */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        border-radius: 0;
        padding: 0.75rem 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-premium {
        margin-top: 0.75rem;
        margin-bottom: 1.25rem;
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-card {
        min-width: 200px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Sections */
    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .section-spacing {
        height: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .gallery-filter {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.75rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* CTA Banners */
    .cta-banner {
        border-radius: var(--border-radius);
        margin: 2rem 0.5rem;
        padding: 2rem 1rem;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    /* Cards */
    .service-card,
    .testimonial-card {
        border-radius: var(--border-radius);
    }
    
    /* Footer */
    .footer {
        border-radius: 0;
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-container {
        gap: 1rem;
    }
    
    .footer-section h3 {
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }
    
    .footer-section p {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-links li {
        margin-bottom: 0.35rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.35rem 0;
    }
    
    .footer-bottom {
        margin-top: 1rem;
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .footer-section a[i][data-lucide] {
        font-size: 1.25rem;
        padding: 0.5rem;
        margin-right: 0.5rem;
    }
}

/* Mobile phones (480px - 576px) */
@media (max-width: 576px) {
    /* Hero Section */
    .hero {
        padding-top: 90px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .hero-premium {
        font-size: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Sections */
    .section-title h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .section-spacing {
        height: 1.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
        text-align: center;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        margin: 0 auto 0.75rem;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-filters {
        gap: 0.35rem;
    }
    
    .gallery-filter {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .view-gallery-btn {
        margin-top: 1rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-content {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    .testimonial-role {
        font-size: 0.8rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    /* CTA Banners */
    .cta-banner {
        margin: 1.5rem 0.25rem;
        padding: 1.5rem 0.75rem;
    }
    
    .cta-banner h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-banner p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .btn-secondary {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 1rem 0 0.25rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .footer-bottom {
        margin-top: 0.75rem;
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    /* Social Media Icons */
    .footer-section div[style*="display: flex"] {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-section a[i][data-lucide] {
        font-size: 1.1rem;
        padding: 0.4rem;
        margin-right: 0;
    }
}

/* Small mobile phones (320px - 480px) */
@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding-top: 80px;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-premium {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 180px;
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
    
    /* Sections */
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
    
    /* Services */
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .gallery-filter {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Footer */
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
    }
}

/* Very small mobile phones (240px - 320px) */
@media (max-width: 320px) {
    /* Hero Section */
    .hero {
        padding-top: 70px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-premium {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 160px;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 0.75rem;
        max-width: 200px;
    }
    
    .stat-icon {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Sections */
    .section-title h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .section-description {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .section-spacing {
        height: 1rem;
    }
    
    /* Services */
    .service-card {
        padding: 0.75rem;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .service-description {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .gallery-filter {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 0.75rem;
    }
    
    .testimonial-content {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
    }
    
    .testimonial-role {
        font-size: 0.7rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 0.5rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
    
    /* CTA Banners */
    .cta-banner {
        margin: 1rem 0.15rem;
        padding: 1rem 0.5rem;
    }
    
    .cta-banner h2 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }
    
    .cta-banner p {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer-section h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.65rem;
        padding: 0.15rem 0.3rem;
    }
    
    .footer-bottom {
        font-size: 0.65rem;
        padding: 0.5rem;
    }
    
    /* Social Media Icons */
    .footer-section a[i][data-lucide] {
        font-size: 1.25rem;
        padding: 0.5rem;
    }
}
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

/* Utility Classes */

/* Enhanced touch targets for mobile */
@media (max-width: 768px) {
    .nav-link,
    .mobile-nav-link,
    .btn-primary,
    .btn-secondary,
    .gallery-filter,
    .service-card,
    .testimonial-card {
        min-height: 44px;
        min-touch-target-size: 44px;
    }
    
    .gallery-filter {
        padding: 0.75rem 1.25rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.75rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-height: auto;
    }
}

/* Landscape mode optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-card {
        min-width: 140px;
        max-width: 180px;
    }
    
    .section-spacing {
        height: 1rem;
    }
}

/* High DPI/Retina display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero,
    .footer,
    .service-card,
    .testimonial-card {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .service-icon,
    .stat-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Accessibility improvements for reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero::before,
    .footer::before,
    .footer::after {
        animation: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-light: rgba(255, 255, 255, 0.9);
        --text-dark: rgba(0, 0, 0, 0.9);
    }
    
    .contact-form {
        background: white;
        color: var(--text-dark);
        border: 1px solid rgba(0, 0, 0, 0.2);
    }
    
    .form-group input,
    .form-group textarea {
        background: white;
        color: #333;
        border: 1px solid rgba(0, 0, 0, 0.3);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(0, 0, 0, 0.5);
    }
}

/* Print styles */
@media print {
    .navbar,
    .mobile-menu,
    .hero-buttons,
    .gallery-filters,
    .view-gallery-btn,
    .contact-form,
    .footer-bottom,
    .cta-banner {
        display: none !important;
    }
    
    .hero,
    .section,
    .footer {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff !important;
    }
    
    .hero {
        background: #fff !important;
        color: #000;
        min-height: auto;
        padding-top: 0;
    }
    
    .hero-title,
    .hero-premium,
    .hero-subtitle {
        color: #000 !important;
    }
    
    .service-card,
    .testimonial-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

/* Additional responsive enhancements */

/* Large landscape tablets and iPads */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* Medium landscape devices */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 85vh;
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Small landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-premium {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 0.75rem;
    }
}

/* Ultra-wide monitors (21:9 aspect ratio) */
@media (min-width: 2560px) {
    .container,
    .nav-container,
    .footer-container,
    .hero-content {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title h2 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

/* Square monitors and iPads */
@media (min-width: 768px) and (max-width: 1024px) and (aspect-ratio: 1/1) {
    .hero {
        min-height: 80vh;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .gallery-filter,
    .nav-link,
    .footer-links a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card,
    .testimonial-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 107, 0, 0.3);
    }
    
    .gallery-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 107, 0, 0.3);
    }
}

/* High contrast mode accessibility */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
    
    .service-card,
    .testimonial-card,
    .contact-form {
        border: 1px solid currentColor;
    }
    
    .nav-link {
        border-bottom: 2px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-bottom-color: currentColor;
    }
}

/* Focus visible for better keyboard navigation */
@media (focus-visible: focus-visible) {
    .btn-primary:focus-visible,
    .btn-secondary:focus-visible,
    .nav-link:focus-visible,
    .gallery-filter:focus-visible,
    .footer-links a:focus-visible {
        outline: 3px solid var(--primary-orange);
        outline-offset: 2px;
    }
}
.text-center {
    text-align: center;
}

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

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

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-link:focus,
.gallery-filter:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    background: white;
    color: #333;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* Cursor animation */
.cursor-glow {
    cursor: pointer;
    position: relative;
}

.cursor-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    pointer-events: none;
}

.cursor-glow:hover::before {
    width: 100px;
    height: 100px;
}

/* Social media hover effects */
.footer-section a[i][data-lucide] {
    color: #ccc;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a[i][data-lucide]:hover {
    color: var(--primary-orange);
    transform: translateY(-3px) scale(1.1);
}

.footer-section a[i][data-lucide]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    pointer-events: none;
}

.footer-section a[i][data-lucide]:hover::before {
    width: 60px;
    height: 60px;
}