/* ===== CSS FOR AL SHAIKH EMBROIDERY ===== */
/* ===== COMPLETE WITH UNIFIED COLOR SCHEME ===== */

/* ===== ROOT VARIABLES - UPDATED ===== */
:root {
    /* UNIFIED COLOR SCHEME - Using header menu hover color */
    --color-primary: #FF6B6B;      /* Vibrant Coral (from header menu hover) */
    --color-secondary: #4ECDC4;    /* Turquoise */
    --color-accent: #9D4EDD;       /* Purple */
    
    /* Additional Vibrant Colors */
    --color-pink: #FF6B9D;
    --color-green: #52B788;
    --color-blue: #4361EE;
    --color-orange: #F8961E;
    --color-yellow: #FFD166;
    
    /* Background & Text */
    --color-background: #FFFFFF;
    --color-light: #F8F9FA;
    --color-dark: #212529;
    --color-text: #495057;
    --color-white: #FFFFFF;
    
    /* Dark variations */
    --color-black-light: #2D2D2D;
    --color-black-dark: #000000;
    
    /* UPDATED BETTER FONTS */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-decorative: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-colorful: 0 10px 30px rgba(255, 107, 107, 0.2);
    
    /* Borders */
    --border-radius: 6px;
    --border-radius-lg: 12px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.decorative-text {
    font-family: var(--font-decorative);
    font-weight: 400;
    font-style: italic;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

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

ul, ol {
    list-style: none;
}

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

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-primary), 
        var(--color-secondary),
        var(--color-accent));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
    opacity: 0.8;
}

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

/* Remove gold-text class and replace with primary */
.primary-text {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark), var(--color-black-light));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--color-white);
    max-width: 500px;
    padding: var(--spacing-xl);
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    color: var(--color-white);
}

.preloader-logo i {
    color: var(--color-primary);
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.preloader-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 107, 107, 0.2);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    margin: 0 auto var(--spacing-lg);
    animation: spin 1s linear infinite;
}

.loading-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    letter-spacing: 1px;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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: var(--transition-slow);
    z-index: -1;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-colorful);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.btn-dark {
    background: linear-gradient(135deg, var(--color-dark), var(--color-black-light));
    color: var(--color-white);
    border: 2px solid var(--color-dark);
}

.btn-dark:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline-light:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
}

/* ===== TOP HEADER ===== */
.top-header {
    background: linear-gradient(135deg, var(--color-dark), var(--color-black-light));
    color: var(--color-white);
    padding: var(--spacing-sm) 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.contact-info i {
    color: var(--color-primary);
    margin-right: 6px;
}

.contact-info span:hover {
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: var(--color-black-light);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: var(--transition-slow);
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    color: var(--color-white);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* ===== MAIN HEADER ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    padding: var(--spacing-xs) 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.5px;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.02);
}

.logo i {
    color: var(--color-primary);
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.3));
    line-height: 1;
    transition: transform var(--transition-normal);
}

.logo:hover i {
    transform: rotate(15deg);
}

.logo-text {
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-highlight {
    color: var(--color-primary);
    position: relative;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    color: var(--color-dark);
    font-size: 1.05rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    transition: var(--transition-normal);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-colorful);
    margin-left: var(--spacing-sm);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--color-dark);
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: var(--transition-normal);
}

.mobile-menu-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(33, 37, 41, 0.95) 0%,
        rgba(0, 0, 0, 0.9) 100%);
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity var(--transition-slow);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(33, 37, 41, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 100%);
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1576566588028-4147f3842f27?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1591047139829-d91aecb6caea?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.hero-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1584917865442-de89df76afd3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: var(--color-white);
    padding-top: 80px;
}

.hero-title {
    font-size: 3.8rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title .primary-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    max-width: 650px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    z-index: 10;
}

.slider-prev,
.slider-next {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1.3rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

.dot.active {
    background-color: var(--color-primary);
    border-color: var(--color-white);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.03) 0%,
        rgba(78, 205, 196, 0.03) 50%,
        rgba(157, 78, 221, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-preview::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-normal);
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-blue));
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
}

.about-text h3 {
    font-size: 2.3rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
    line-height: 1.2;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-top: 4px solid transparent;
}

.feature:nth-child(1) { border-top-color: var(--color-primary); }
.feature:nth-child(2) { border-top-color: var(--color-secondary); }
.feature:nth-child(3) { border-top-color: var(--color-accent); }

.feature:hover {
    transform: translateY(-10px);
    border-top-color: var(--color-primary) !important;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
}

.primary-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.1), 
        rgba(78, 205, 196, 0.1));
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.feature:hover .primary-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    color: var(--color-white);
    transform: scale(1.1);
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
    transition: color var(--transition-normal);
}

.feature:hover h4 {
    color: var(--color-primary);
}

.feature p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0;
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.feature:hover p {
    opacity: 1;
}

/* ===== SERVICES PREVIEW ===== */

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background-color: var(--color-white);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(157, 78, 221, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed to 4 columns */
    gap: 25px; /* Reduced gap for better fit */
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px; /* Adjusted padding */
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    position: relative;
    overflow: hidden;
}

/* Simple subtle hover effect */
.service-card:hover {
    transform: translateY(-8px); /* Subtle lift effect */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.service-icon {
    font-size: 2.5rem; /* Slightly smaller */
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary); /* Single color for icons */
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.05); /* Subtle icon scale on hover */
}

/* Set specific colors for each service icon */
.service-card:nth-child(1) .service-icon {
    color: var(--color-primary); /* School Uniforms - Coral */
}

.service-card:nth-child(2) .service-icon {
    color: var(--color-secondary); /* Office Uniforms - Turquoise */
}

.service-card:nth-child(3) .service-icon {
    color: var(--color-accent); /* Car Seat Embroidery - Purple */
}

.service-card:nth-child(4) .service-icon {
    color: var(--color-orange); /* Horse Saddle Pads - Orange */
}

.service-card:nth-child(5) .service-icon {
    color: var(--color-blue); /* Custom Designs - Blue */
}

.service-card h3 {
    font-size: 1.3rem; /* Slightly smaller */
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    transition: color var(--transition-normal);
}

.service-card:hover h3 {
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem; /* Slightly smaller */
    line-height: 1.6;
    opacity: 0.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-normal);
    margin-top: 15px;
}

.service-link i {
    transition: transform var(--transition-normal);
    color: var(--color-primary);
}

.service-link:hover {
    gap: var(--spacing-sm);
    color: var(--color-secondary);
}

.service-link:hover i {
    color: var(--color-secondary);
    transform: translateX(5px);
}

/* Add a subtle background pattern on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.03) 0%,
        rgba(78, 205, 196, 0.03) 50%,
        rgba(157, 78, 221, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

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

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 2.2rem;
        height: 60px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.9) 0%,
        rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px; /* Reduced gap for 4 columns */
    margin-bottom: var(--spacing-xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 250px; /* Slightly shorter for 4 columns */
    display: block;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.1), 
        rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

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

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 2;
}

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

.overlay-content h4 {
    color: var(--color-white);
    font-size: 1.2rem; /* Slightly smaller */
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    transition-delay: 0.1s;
}

.overlay-content p {
    color: var(--color-primary);
    font-size: 0.85rem; /* Slightly smaller */
    transform: translateY(20px);
    transition: transform var(--transition-normal) 0.1s;
    opacity: 0.9;
}

.gallery-item:hover .overlay-content h4,
.gallery-item:hover .overlay-content p {
    transform: translateY(0);
}

/* ===== RESPONSIVE GALLERY ===== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on large tablets */
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 16px;
    }
    
    .gallery-item {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .overlay-content h4 {
        font-size: 1.1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
}


/* ===== CONTACT CTA ===== */
.contact-cta {
    background: linear-gradient(135deg, 
        var(--color-dark) 0%,
        var(--color-black-light) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 107, 107, 0.1) 0%, 
        transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-content .primary-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, 
        var(--color-dark) 0%,
        var(--color-black-light) 100%);
    color: var(--color-white);
    padding-top: var(--spacing-xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--color-primary), 
        var(--color-secondary),
        var(--color-accent));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr; /* Fixed: First and last columns wider */
    gap: 40px;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
    align-items: start; /* Align all items to top */
}

.footer-col {
    padding: 0 5px; /* Reduced padding */
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

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

/* First column - Company Description */
.footer-col:first-child {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    transition: transform var(--transition-normal);
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo i {
    color: var(--color-primary);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.3));
    line-height: 1;
    transition: transform var(--transition-normal);
}

.footer-logo:hover i {
    transform: rotate(15deg);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: var(--transition-slow);
}

.footer-social a:hover::before {
    left: 100%;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    color: var(--color-white);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* Middle columns - Quick Links & Our Services */
.footer-links {
    padding-left: 0;
    margin-top: 5px; /* Small adjustment for alignment */
}

.footer-links li {
    margin-bottom: 12px; /* Consistent spacing */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
    display: inline-block;
    position: relative;
    font-size: 1rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 25px;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

/* Last column - Contact Info */
.footer-col:last-child {
    padding-left: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: 18px; /* Consistent spacing */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-item i {
    color: var(--color-primary);
    margin-top: 2px; /* Better alignment */
    font-size: 1.1rem;
    min-width: 20px;
    transition: color var(--transition-normal);
    text-align: center;
}

.contact-item:hover i {
    color: var(--color-secondary);
}

.contact-text {
    flex: 1;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
    display: block;
    margin-bottom: 2px;
}

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

.contact-text span {
    display: block;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ===== FOOTER CONTACT LINE SPACING FIX ===== */
.footer-col:last-child .contact-text {
    line-height: 1.4; /* Adjust this value to control spacing */
}

.footer-col:last-child .contact-text span,
.footer-col:last-child .contact-text a {
    display: block;
    margin-bottom: 4px; /* Adjust this to control space between lines */
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legal-links {
    display: flex;
    gap: var(--spacing-lg);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-normal);
    position: relative;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
}

.legal-links a:hover {
    color: var(--color-primary);
}

.legal-links a:hover::after {
    width: 100%;
}

/* ===== RESPONSIVE FOOTER FIXES ===== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col {
        padding: 0;
    }
    
    .footer-col:first-child {
        padding-right: 0;
        grid-column: span 2; /* Company description takes full width */
    }
    
    .footer-col:last-child {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a::before {
        display: none; /* Hide arrow on mobile */
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-item i {
        display: none; /* Hide icons on mobile for better alignment */
    }
}

@media (max-width: 576px) {
    .footer-content {
        gap: 25px;
    }
    
    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .footer-logo {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .footer-logo i {
        font-size: 1.6rem;
    }
    
    .footer-col p {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .contact-text span {
        font-size: 0.9rem;
    }
}

/* ===== HIDDEN AUTHOR CREDIT ===== */
.author-credit {
    display: none !important; /* Hidden as requested */
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Stagger animations */
.service-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.gallery-item {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

/* ===== ACCESSIBILITY ===== */
/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -50px;
    left: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 700;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== LIGHTBOX CUSTOM STYLES ===== */
.lb-outerContainer {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--color-white) !important;
}

.lb-container {
    padding: 20px;
}

.lb-dataContainer {
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.lb-caption {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
}

.lb-number {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.8;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

.lb-closeContainer {
    background: transparent !important;
}

.lb-close {
    width: 40px !important;
    height: 40px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all var(--transition-normal) !important;
}

.lb-close:hover {
    background: var(--color-primary) !important;
    transform: scale(1.1) !important;
}

.lb-loader {
    border: 6px solid rgba(255, 107, 107, 0.2) !important;
    border-top: 6px solid var(--color-primary) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    animation: spin 1s linear infinite !important;
}

/* Lightbox overlay */
.lightboxOverlay {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(5px) !important;
}

/* Lightbox image container */
.lb-image {
    border: 5px solid var(--color-white) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Lightbox navigation arrows */
.lb-prev, .lb-next {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid var(--color-white) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    transition: all var(--transition-normal) !important;
}

.lb-prev:hover, .lb-next:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    transform: scale(1.1) !important;
}

.lb-prev:before, .lb-next:before {
    color: var(--color-white) !important;
    font-size: 1.5rem !important;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-lg);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-frame {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col {
        padding: 0;
    }
    
    .cta-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    /* Mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile navigation */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        top: calc(100% - 1px);
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    /* Hero adjustments */
    .hero {
        height: 75vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Section adjustments */
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature {
        padding: 25px 15px;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a::before {
        display: none; /* Hide arrow on mobile */
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Contact adjustments */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-btns {
        flex-direction: column;
    }
    
    .cta-btns .btn {
        width: 100%;
    }
    
    /* Slider controls */
    .slider-controls {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .preloader-logo {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .preloader-logo i {
        font-size: 2.5rem;
    }
    
    .preloader-spinner {
        width: 60px;
        height: 60px;
        border-top-color: var(--color-primary);
    }
    
    .loading-text {
        font-size: 1rem;
    }
    
    /* Top header adjustments */
    .top-header-content {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    /* Gallery adjustments */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Footer contact items */
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-item i {
        display: none; /* Hide icons on very small screens */
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo i {
        font-size: 1.8rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-logo i {
        font-size: 1.6rem;
    }
    
    .footer-bottom-content {
        font-size: 0.8rem;
    }
    
    .legal-links {
        gap: var(--spacing-md);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .preloader,
    .top-header,
    .mobile-menu-btn,
    .slider-controls,
    .slider-dots,
    .nav-cta,
    .footer-social,
    .author-credit {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .hero-slider {
        height: auto;
    }
    
    .hero-slide {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 40px 0;
    }
    
    .hero-slide::before {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .hero-content {
        color: #000;
        text-shadow: none;
        padding-top: 0;
    }
    
    .hero-title {
        color: #000;
        text-shadow: none;
    }
    
    .hero-title .primary-text {
        color: #000;
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
    }
    
    .btn {
        display: none;
    }
    
    .section {
        padding: 20px 0;
        break-inside: avoid;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .footer {
        background: #fff !important;
        color: #000 !important;
        border-top: 2px solid #000;
    }
    
    .footer::before {
        display: none;
    }
    
    .footer h3,
    .footer p,
    .footer a,
    .footer li,
    .footer .contact-item {
        color: #000 !important;
    }
    
    .footer-col h3::after {
        background: #000;
    }
    
    .footer-logo i {
        color: #000 !important;
    }
    
    .image-frame {
        box-shadow: none;
        transform: none !important;
    }
    
    .gallery-item:hover img {
        transform: none !important;
    }
}




/* Lightbox Custom Styling */
.lb-dataContainer .lb-close {
    background: #333 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 24px !important;
    line-height: 40px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.lb-dataContainer .lb-close:hover {
    background: #D4AF37 !important;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    background: #333 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
    line-height: 50px !important;
    transition: all 0.3s ease !important;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    background: #D4AF37 !important;
}


/* ===== FOOTER CONTACT LINE SPACING FIX - AGGRESSIVE ===== */
.footer .footer-col:last-child .contact-text {
    line-height: 1.3 !important;
}

.footer .footer-col:last-child .contact-text span {
    display: block !important;
    margin-bottom: 2px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
}

.footer .footer-col:last-child .contact-item:first-child .contact-text span,
.footer .footer-col:last-child .contact-item:last-child .contact-text span {
    margin-bottom: 1px !important;
    line-height: 1.2 !important;
}

.footer .footer-col:last-child .contact-item {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
    min-height: auto !important;
}

/* Remove all default spacing */
.footer .footer-col:last-child .contact-item * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}




/* ===== PAGE HEADER STYLES ===== */
.page-header {
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.95), rgba(0, 0, 0, 0.9));
    padding: 120px 0 80px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576566588028-4147f3842f27?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--color-primary);
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-dark), var(--color-black-light));
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== FORM STYLES ===== */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: all var(--transition-normal);
    background: var(--color-white);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-btns {
        flex-direction: column;
    }
    
    .cta-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-btns {
        gap: 15px;
    }
}