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

:root {
    /* Royal Blue + Gold Luxury Color Palette */
    --primary-blue: #1e3a8a;
    --royal-blue: #1e40af;
    --deep-blue: #1e293b;
    --gold: #fbbf24;
    --gold-dark: #f59e0b;
    --gold-light: #fde047;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;
    
    /* Gradients */
    --blue-gradient: linear-gradient(135deg, var(--primary-blue), var(--royal-blue));
    --gold-gradient: linear-gradient(135deg, var(--gold), var(--gold-dark));
    --luxury-gradient: linear-gradient(135deg, var(--royal-blue), var(--gold));
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --container-padding: 2rem;
    --section-padding: 5rem 0;
    
    /* Shadows */
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 25px rgba(251, 191, 36, 0.3);
    --shadow-blue: 0 10px 25px rgba(30, 64, 175, 0.3);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
    --transition-slow: 0.8s ease;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== CURSOR TRAIL ANIMATION ===== */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-trail.active {
    opacity: 0.8;
}

.cursor-trail::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

/* ===== FAST LOADING WITH SMOOTH ANIMATIONS ===== */
body.loading {
    overflow: hidden;
}

/* Fade-in animation for content */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton loading for images */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Image lazy loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Fast section animations - No delays */
.hero { animation: fadeInUp 0.4s ease 0s both; }
.features { animation: fadeInUp 0.4s ease 0.1s both; }
.categories { animation: fadeInUp 0.4s ease 0.15s both; }
.quick-quote { animation: fadeInUp 0.4s ease 0.2s both; }
.contact-info { animation: fadeInUp 0.4s ease 0.25s both; }

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

/* Smooth scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo .logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}

/* Actual logo image */
.nav-logo .logo-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    /* Subtle zoom to hide any baked-in white edge */
    transform: scale(1.06);
    transform-origin: center;
    /* Clip a few more pixels from the edge to hide residual white rim inside the asset */
    -webkit-clip-path: circle(calc(50% - 10px) at 50% 50%);
    clip-path: circle(calc(50% - 10px) at 50% 50%);
}

.nav-logo h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
    line-height: 1.1;
}

.nav-logo span {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    display: block;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    transition: all var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
    background: rgba(251, 191, 36, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--royal-blue);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    position: relative;
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fbbf24" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%231e3a8a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gold-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero-placeholder { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-placeholder { width: 260px; height: 260px; margin: 0 auto; }
}

/* ===== LUXURY CONTACT BUTTONS IN PRODUCT CARDS ===== */
.products-section .p-6 .contact-buttons,
.products-section .p-6 .flex.flex-col.space-y-3 {
  gap: 0.75rem;
}

/* WhatsApp button */
.products-section .p-6 button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #1cb05e, #128c7e);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 12px 24px rgba(18, 140, 126, 0.35);
  border: 0;
}
.products-section .p-6 button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.45);
}

/* Call button */
.products-section .p-6 a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--royal-blue), #0b2f7a);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(30, 64, 175, 0.35);
}
.products-section .p-6 a[href^="tel:"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(30, 64, 175, 0.45);
}

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

/* Disable shine overlay to keep a clean plain circle */
.hero-placeholder::before { display: none; }

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.scroll-indicator:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::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: left var(--transition-smooth);
}

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

.btn-primary {
    background: var(--luxury-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

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

.btn-outline:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
}

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

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--luxury-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== CATEGORIES SECTION ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-smooth);
    display: flex;
    min-height: 300px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.category-image {
    flex: 1;
    background: var(--luxury-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.category-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 6s ease-in-out infinite;
}

.category-content {
    flex: 1.5;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.category-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.category-content li {
    padding: 0.3rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.category-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: bold;
}

/* ===== QUICK QUOTE SECTION ===== */
.quick-quote {
    background: var(--luxury-gradient);
    color: var(--white);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.quote-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.quote-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

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

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.input-with-icon input,
.select-wrapper select,
.textarea-wrapper textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 3rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.input-with-icon input:focus,
.select-wrapper select:focus,
.textarea-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    background-color: #fff;
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1.1rem;
    pointer-events: none;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper i {
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.textarea-wrapper textarea {
    min-height: 120px;
    resize: vertical;
    padding-left: 3rem;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(30, 64, 175, 0.2);
}

.btn-primary:hover {
    background: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(30, 64, 175, 0.25);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(37, 211, 102, 0.25);
}

.btn-call {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2);
}

.btn-call:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(245, 158, 11, 0.25);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .quick-contact-buttons {
        width: 100%;
        margin-left: 0;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1) !important;
}

.input-with-icon:hover i {
    color: var(--primary-blue);
}

::placeholder {
    color: #94a3b8;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #94a3b8;
}

::-ms-input-placeholder {
    color: #94a3b8;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select option {
    color: #000000;
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info {
    background: var(--light-gray);
}

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

.contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
    color: var(--gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--gold-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--deep-blue);
    color: var(--white);
}

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

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--gold-light);
    padding-left: 5px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

.contact-info-item i {
    color: var(--gold-light);
    margin-top: 0.2rem;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    opacity: 0.8;
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
}

/* Utility: hide element */
.hidden { display: none !important; }

/* ===== Minimal Utility Classes (for product cards) ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.object-cover { object-fit: cover; }
.cursor-pointer { cursor: pointer; }
.overflow-hidden { overflow: hidden; }
.transition-opacity { transition: opacity 0.5s ease; }
.duration-500 { transition-duration: 0.5s; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* ===== Carousel Defaults ===== */
.carousel-container { position: relative; }
.carousel-item { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; transition: opacity 0.5s ease; }
.carousel-item.active { opacity: 1; }
.carousel-prev, .carousel-next { cursor: pointer; }

/* ===== PAGE HEADER BACKGROUNDS ===== */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25));
    z-index: 1;
}

.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); }
.page-header p { color: #f1f5f9; }
.page-header .breadcrumb a, .page-header .breadcrumb span { color: #e2e8f0; }

.page-header.stone { background-image: url('images/Stone  Products background.jpeg'); }
.page-header.sand { background-image: url('images/Sand  Products Background.jpg'); }
.page-header.gallery { background-image: url('images/Gallery Backgroun image.jpg'); }

/* Fine-tune header focal points to avoid awkward crops */
.page-header.stone { background-position: center top; }

/* Show full stone header image without cropping */
.page-header.stone {
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 55vh;
  background-color: #e5e7eb; /* neutral backdrop for any letterbox space */
}
.page-header.sand { background-position: center bottom; }

@media (max-width: 992px) {
  .page-header { padding: 120px 0 64px; }
  .page-header.stone { min-height: 48vh; background-position: center top; }
}
@media (max-width: 768px) {
  .page-header { padding: 100px 0 56px; }
  .page-header.stone { min-height: 42vh; background-position: center top; }
}

/* ===== CONTACT PAGE LAYOUT TWEAKS ===== */
.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO CIRCLE IMAGE (OPTIONAL) ===== */
.hero-image .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 50%;
    display: block;
    /* Strong zoom + inner clipping to eliminate any baked-in white ring */
    transform: scale(1.42);
    transform-origin: center;
    /* Clip a few more pixels from the edge to hide residual white rim inside the asset */
    -webkit-clip-path: circle(calc(50% - 10px) at 50% 50%);
    clip-path: circle(calc(50% - 10px) at 50% 50%);
}
@media (max-width: 992px) {
  .hero-image .hero-photo {
    transform: scale(1.34);
    object-position: 50% 50%;
    -webkit-clip-path: circle(calc(50% - 8px) at 50% 50%);
    clip-path: circle(calc(50% - 8px) at 50% 50%);
  }
}
@media (max-width: 768px) {
  .hero-image .hero-photo {
    transform: scale(1.28);
    object-position: 50% 50%;
    -webkit-clip-path: circle(calc(50% - 6px) at 50% 50%);
    clip-path: circle(calc(50% - 6px) at 50% 50%);
  }
}

/* ===== CAROUSEL INTERACTIVITY FIX ===== */
.carousel-container { position: relative; }
.carousel-item { pointer-events: none; }
.carousel-item.active { pointer-events: auto; }
.carousel-prev, .carousel-next { z-index: 20; }

/* On small screens, ensure the image fills the circle (no white space) */
@media (max-width: 768px) {
  .hero-image .hero-photo {
    object-fit: cover;
    object-position: center;
  }
}

/* Prevent navbar overlap on small screens for the first hero section if any */
@media (max-width: 768px) {
  .hero { padding-top: 96px; }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-heavy);
    transition: all var(--transition-fast);
}

.floating-whatsapp a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

.floating-whatsapp span {
    display: none;
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floating-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--royal-blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-heavy);
    transition: all var(--transition-fast);
}

.floating-call a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
}

.floating-call i {
    font-size: 1.5rem;
}

.floating-call span {
    display: none;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10050;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 94vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -20px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
  .lightbox-content { max-width: 95%; }
  .lightbox-close { top: 8px; right: 8px; font-size: 2rem; }
}

.lightbox-media {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 88vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.lightbox-media img,
.lightbox-media video {
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lightbox-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.lightbox-prev,
.lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.lightbox-info {
    text-align: center;
    color: var(--white);
    margin-top: 1rem;
    max-width: 600px;
}

.lightbox-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.lightbox-info p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy), 0 0 20px rgba(251, 191, 36, 0.35);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--luxury-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 1;
}

.product-card:hover::before {
    opacity: 0.08;
}

/* Subtle glowing border effect on hover */
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.0);
    transition: box-shadow var(--transition-smooth);
}

.product-card:hover::after {
    box-shadow: 0 0 20px 4px rgba(251, 191, 36, 0.25);
}

.product-images {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.product-badge {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.product-action {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--royal-blue);
}

.product-action:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.product-buttons {
    display: flex;
    gap: 0.8rem;
}

.product-btn {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.product-btn-call {
    background: var(--royal-blue);
    color: var(--white);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-smooth);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        flex-direction: column;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-whatsapp a span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-buttons {
        flex-direction: column;
    }
}

/* ===== ANIMATION UTILITIES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--luxury-gradient);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 5rem 0;
}

/* ===== APPLICATIONS SECTION ===== */
.applications {
    background: var(--light-gray);
    padding: 5rem 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.application-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.application-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.application-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== QUALITY ASSURANCE ===== */
.quality-assurance {
    padding: 5rem 0;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.quality-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quality-features {
    list-style: none;
}

.quality-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.quality-features li i {
    color: var(--gold-dark);
    font-size: 1.2rem;
}

.quality-placeholder {
    width: 300px;
    height: 300px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    margin: 0 auto;
    box-shadow: var(--shadow-heavy);
}

.quality-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.quality-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta {
    background: var(--luxury-gradient);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form-container, .contact-info-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.contact-form-container:hover, .contact-info-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-form h2, .contact-info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-form p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.contact-details a, .contact-details p {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

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

.map-section {
    padding: 3rem 0;
    background-color: white;
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container, .contact-info-container {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-form-container, .contact-info-container {
        padding: 1.25rem;
    }
    
    .contact-form h2, .contact-info-card h3 {
        font-size: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 0.75rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 2rem 0;
    background-color: #f8fafc;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                      url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 L50,30 L70,10 L90,30 L90,50 L70,70 L50,50 L30,70 L10,50 L10,30 Z" fill="none" stroke="%23e2e8f0" stroke-width="1"/></svg>');
    background-size: 200px;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        padding: 0 2rem;
        max-width: 1400px;
    }
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

@media (min-width: 768px) {
    .contact-form-container {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .contact-form-container {
        padding: 2rem;
    }
}

.form-header {
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f4f8;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    left: 50%;
    transform: translateX(-50%);
}

.form-header p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 80%;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
    position: relative;
    padding-left: 5px;
}

.form-group label::after {
    content: ' *';
    color: #e53e3e;
    display: none;
}

.form-group label.required::after {
    display: inline;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--dark-gray);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

/* Form input and select styles for better visibility */
.form-group input,
.form-group select,
.form-group textarea {
    color: #1a202c; /* Dark color for input text */
}

/* Placeholder styles for better visibility */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #4a5568; /* Slightly lighter gray for placeholders */
    opacity: 1; /* Ensure full opacity */
}

/* Style for the select element */
.form-group select {
    color: #1a202c; /* Dark color for selected option */
    -webkit-appearance: none; /* Remove default styling on iOS */
    -moz-appearance: none;    /* Remove default styling on Firefox */
    appearance: none;         /* Remove default styling */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem; /* Make room for the dropdown arrow */
}

/* Style for dropdown options */
.form-group select option {
    color: #1a202c; /* Dark color for dropdown options */
    background-color: white;
    padding: 0.5rem;
}

/* Style for the first option (placeholder) */
.form-group select option[value=""] {
    color: #4a5568; /* Slightly lighter gray for placeholder text */
}

.form-group small {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: center;
}

.form-actions .btn {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-actions .btn i {
    font-size: 1.1em;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f4f8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.trust-badge i {
    color: var(--gold);
    font-size: 1.1em;
}

/* Contact Info Card */
.contact-info-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.quick-actions {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.quick-actions h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
}

.call-btn {
    background: var(--royal-blue);
    color: var(--white);
}

.email-btn {
    background: var(--gold-dark);
    color: var(--white);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
}

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

.map-details h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.map-details p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-actions {
    display: flex;
    justify-content: center;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin: 0;
}

.faq-question i {
    color: var(--gold-dark);
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ===== GALLERY FILTER ===== */
.gallery-filter {
    padding: 2rem 0;
    background: var(--light-gray);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--royal-blue);
    background: var(--white);
    color: var(--royal-blue);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.gallery-section {
    padding: 3rem 0 5rem;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

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

.gallery-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #000080;
        --gold: #ffd700;
        --gray: #000000;
    }
}

/* ===== ENHANCED PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold-dark);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--luxury-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 1;
    pointer-events: none;
}

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

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active,
.carousel-item.opacity-100 {
    opacity: 1;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    font-size: 1.2rem;
    font-weight: bold;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.text-sand {
    color: var(--gold-dark);
}

.animate__fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

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

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .nav-logo .logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
}
