/* ====================================
   MARINE CRAFTS LUXURY THEME SYSTEM
   Centralized styling for consistent design
   ==================================== */

/* === TAILWIND CONFIG EXTENSION === */
/* This needs to be included in each HTML file's script tag */
/*
tailwind.config = {
    theme: {
        extend: {
            colors: {
                'luxury-white': '#fefefe',
                'pearl-white': '#fafbfc',
                'platinum': '#f4f6f8',
                'champagne': '#f7f5f3',
                'luxury-cream': '#faf9f7',
                'rose-gold': '#e8b4a0',
                'deep-navy': '#1a202c',
                'charcoal': '#2d3748',
                'luxury-gray': '#718096',
                'silver-accent': '#e2e8f0',
                'luxury-red': '#dc2626',
                'premium-gradient': 'linear-gradient(135deg, #fefefe 0%, #f4f6f8 100%)'
            },
            fontFamily: {
                'display': ['Playfair Display', 'serif'],
                'body': ['Inter', 'system-ui', 'sans-serif'],
                'luxury': ['Montserrat', 'sans-serif']
            },
            screens: {
                'xs': '320px',
                'sm': '480px',
                'md': '640px',
                'lg': '768px',
                'xl': '1024px',
                '2xl': '1280px',
                '3xl': '1536px',
                '4xl': '1920px'
            }
        }
    }
}
*/

/* === CORE LUXURY PATTERNS === */
.luxury-gradient {
    background: linear-gradient(135deg, #fefefe 0%, #f4f6f8 30%, #faf9f7 70%, #f7f5f3 100%);
}

.luxury-pattern {
    background: 
        radial-gradient(circle at 25% 25%, rgba(232, 180, 160, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #fefefe 0%, #faf9f7 100%);
}

.hero-luxury {
    background: 
        linear-gradient(135deg, rgba(254, 254, 254, 0.95) 0%, rgba(247, 245, 243, 0.9) 100%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e8b4a0" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>');
}

/* === GLASS MORPHISM === */
.glass-luxury {
    backdrop-filter: blur(25px);
    background: rgba(254, 254, 254, 0.95);
    border: 1px solid rgba(232, 180, 160, 0.2);
    box-shadow: 
        0 25px 45px -10px rgba(0, 0, 0, 0.05),
        0 10px 25px -5px rgba(232, 180, 160, 0.1);
}

/* === LUXURY CARDS === */
.luxury-card {
    background: linear-gradient(145deg, rgba(254, 254, 254, 0.98), rgba(250, 249, 247, 0.95));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(232, 180, 160, 0.15);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 40px 80px -12px rgba(0, 0, 0, 0.12),
        0 10px 30px -5px rgba(232, 180, 160, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.95),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* === HOVER EFFECTS === */
.luxury-hover {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 45px 90px -15px rgba(0, 0, 0, 0.15),
        0 15px 35px -8px rgba(232, 180, 160, 0.25);
}

/* === TEXT STYLING === */
.luxury-text-gradient {
    background: linear-gradient(135deg, #1a202c, #2d3748, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === SHADOWS === */
.luxury-shadow {
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.1),
        0 10px 30px -5px rgba(232, 180, 160, 0.15);
}

/* === BUTTONS === */
.luxury-button {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #dc2626 100%);
    box-shadow: 
        0 15px 35px -5px rgba(26, 32, 44, 0.3),
        0 5px 15px -3px rgba(220, 38, 38, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 25px 50px -8px rgba(26, 32, 44, 0.4),
        0 10px 25px -5px rgba(220, 38, 38, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* === SPECIALIZED COMPONENTS === */
.ship-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 
        0 30px 60px -10px rgba(0, 0, 0, 0.15),
        0 10px 30px -5px rgba(220, 38, 38, 0.1);
}

.ship-showcase img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ship-showcase:hover img {
    transform: scale(1.1);
}

/* Construction Carousel */
#constructionCarousel {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* (720 / 1280) * 100 */
    overflow: hidden;
    border-radius: 1rem;
    background-color: #f4f6f8;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

#constructionCarousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.7s ease-in-out;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
}

/* Ensure proper image scaling at different breakpoints */
@media (min-width: 1280px) {
    #constructionCarousel {
        max-width: 1280px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #constructionCarousel {
        border-radius: 0.75rem;
    }
}

@media (max-width: 480px) {
    #constructionCarousel {
        border-radius: 0.5rem;
    }
}

#constructionCarousel .rounded-full {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    width: 0.75rem;
    height: 0.75rem;
}

#constructionCarousel .rounded-full:hover {
    transform: scale(1.2);
    opacity: 1 !important;
}

/* Navigation dots container */
#constructionCarousel .absolute.bottom-3 {
    z-index: 20;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
}

.construction-section {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Image loading optimization */
#constructionCarousel img[loading="lazy"] {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: -200% 0;
    }
}

/* === ANIMATIONS === */
.animate-luxury-float {
    animation: luxuryFloat 12s ease-in-out infinite;
}

@keyframes luxuryFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    33% { 
        transform: translateY(-30px) rotate(1deg); 
        opacity: 0.8;
    }
    66% { 
        transform: translateY(-15px) rotate(-1deg); 
        opacity: 0.7;
    }
}

/* === WHATSAPP ATTENTION ANIMATIONS === */
.whatsapp-pulse {
    animation: whatsappPulse 2s ease-in-out 0.5s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
}

.whatsapp-glow {
    position: relative;
}

.whatsapp-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
    border-radius: inherit;
    z-index: -1;
    animation: whatsappGlow 3s ease-in-out infinite;
}

@keyframes whatsappGlow {
    0%, 100% {
        opacity: 0.8;
        filter: blur(8px);
    }
    50% {
        opacity: 1;
        filter: blur(12px);
    }
}

/* === MOBILE FIRST RESPONSIVE DESIGN === */

/* === EXTRA SMALL DEVICES (max-width: 479px) === */
@media (max-width: 479px) {
    .luxury-card {
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 1rem;
    }
    
    .luxury-button {
        padding: 1rem 1.5rem !important;
        font-size: 0.875rem !important;
        min-height: 52px !important;
        border-radius: 1rem !important;
        line-height: 1.2 !important;
        letter-spacing: 0.025em !important;
    }
    
    /* Glass buttons mobile styling */
    .glass-luxury[href] {
        padding: 1rem 1.5rem !important;
        font-size: 0.875rem !important;
        min-height: 52px !important;
        border-radius: 1rem !important;
        line-height: 1.2 !important;
        letter-spacing: 0.025em !important;
    }
    
    /* Call to Action section specific adjustments */
    .cta-button-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button-container .luxury-button,
    .cta-button-container .glass-luxury {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }
    
    /* Button text responsive scaling */
    .cta-button-container .luxury-button span,
    .cta-button-container .glass-luxury span {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Icon spacing adjustment */
    .cta-button-container .luxury-button i,
    .cta-button-container .glass-luxury i {
        font-size: 0.875rem !important;
        margin-left: 0.5rem !important;
    }
    
    .glass-luxury {
        backdrop-filter: blur(15px);
        margin: 0.25rem;
        padding: 0.75rem;
    }
    
    /* Enhanced Typography Scaling */
    h1 { font-size: 1.75rem !important; line-height: 1.1; }
    h2 { font-size: 1.5rem !important; line-height: 1.2; }
    h3 { font-size: 1.25rem !important; line-height: 1.3; }
    h4 { font-size: 1.125rem !important; line-height: 1.4; }
    
    /* Container Responsiveness */
    .max-w-7xl { padding-left: 0.75rem; padding-right: 0.75rem; }
    
    /* Grid Fixes */
    .grid-cols-2, .grid-cols-3, .grid-cols-4 { 
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Image Optimization */
    img { 
        max-width: 100%; 
        height: auto; 
        border-radius: 0.75rem;
    }
    
    /* Mobile Menu Enhancements */
    #mobile-menu a {
        padding: 1rem;
        margin: 0.25rem 0;
        border-radius: 0.75rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        font-size: 1rem;
    }
    
    /* Form Optimization */
    .form-luxury {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 0.75rem;
    }
    
    textarea.form-luxury {
        min-height: 120px;
        resize: vertical;
    }
    
    /* Icon Container Responsive Sizing */
    .w-16.h-16 {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    
    .w-12.h-12 {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    /* Button Icon Containers */
    .w-36.h-12, .w-48.h-16, .w-60.h-20 {
        width: auto !important;
        height: 3rem !important;
        padding: 0.75rem 1rem;
    }
}

/* === SMALL DEVICES (480px - 640px) === */
@media (min-width: 480px) and (max-width: 640px) {
    .luxury-card {
        padding: 1.25rem;
        margin: 0.75rem 0;
        border-radius: 1.25rem;
    }
    
    .luxury-button {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        min-height: 52px !important;
        border-radius: 1.25rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0.025em !important;
    }
    
    /* Glass buttons mobile styling */
    .glass-luxury[href] {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        min-height: 52px !important;
        border-radius: 1.25rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0.025em !important;
    }
    
    /* Call to Action section specific adjustments */
    .cta-button-container {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .cta-button-container .luxury-button,
    .cta-button-container .glass-luxury {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }
    
    /* Button text responsive scaling */
    .cta-button-container .luxury-button span,
    .cta-button-container .glass-luxury span {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
    }
    
    /* Icon spacing adjustment */
    .cta-button-container .luxury-button i,
    .cta-button-container .glass-luxury i {
        font-size: 1rem !important;
        margin-left: 0.5rem !important;
    }
    
    .glass-luxury {
        backdrop-filter: blur(20px);
        margin: 0.5rem;
        padding: 1rem;
    }
    
    /* Typography Adjustments */
    h1 { font-size: 2rem !important; line-height: 1.2; }
    h2 { font-size: 1.75rem !important; line-height: 1.3; }
    h3 { font-size: 1.5rem !important; line-height: 1.4; }
    h4 { font-size: 1.25rem !important; line-height: 1.4; }
    
    /* Grid Responsiveness */
    .grid-cols-3, .grid-cols-4 { 
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
    
    .max-w-7xl { padding-left: 1rem; padding-right: 1rem; }
    
    /* Enhanced Mobile Menu */
    #mobile-menu a {
        padding: 1.25rem;
        margin: 0.5rem 0;
        border-radius: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        font-size: 1.125rem;
    }
    
    /* Icon Sizing Improvements */
    .w-16.h-16 {
        width: 3rem !important;
        height: 3rem !important;
    }
    
    .w-12.h-12 {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    
    .w-36.h-12, .w-48.h-16, .w-60.h-20 {
        width: auto !important;
        height: 3.5rem !important;
        padding: 1rem 1.5rem;
    }
}

/* === MEDIUM DEVICES (641px - 768px) === */
@media (min-width: 641px) and (max-width: 768px) {
    .luxury-card { 
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    
    .grid-cols-2 { 
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .grid-cols-3 { 
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .grid-cols-4 { 
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* === LARGE DEVICES (769px - 1024px) === */
@media (min-width: 769px) and (max-width: 1024px) {
    .luxury-card { 
        padding: 2rem;
        border-radius: 2rem;
    }
    
    .grid-cols-4 { 
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
    
    .lg\\:space-x-8 > * + * {
        margin-left: 1.5rem !important;
    }
}

/* === X-LARGE DEVICES (1025px - 1280px) === */
@media (min-width: 1025px) and (max-width: 1280px) {
    .max-w-7xl {
        max-width: 72rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .luxury-card {
        padding: 2.5rem;
        border-radius: 2rem;
    }
}

/* === 2X-LARGE DEVICES (1281px - 1536px) === */
@media (min-width: 1281px) and (max-width: 1536px) {
    .max-w-7xl {
        max-width: 80rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

/* === 3X-LARGE DEVICES (1537px+) === */
@media (min-width: 1537px) {
    .max-w-7xl {
        max-width: 90rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .luxury-card {
        padding: 3rem;
        border-radius: 2.5rem;
    }
    
    /* Enhanced Typography for Large Screens */
    h1 { font-size: 4.5rem; }
    h2 { font-size: 3.5rem; }
    h3 { font-size: 2.5rem; }
}

/* === ULTRA-WIDE DEVICES (1921px+) === */
@media (min-width: 1921px) {
    .max-w-7xl {
        max-width: 100rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* === HIGH DPI DISPLAYS === */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .luxury-card, .glass-luxury {
        border-width: 0.5px;
    }
    
    img {
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* === TOUCH TARGET OPTIMIZATION === */
.touch-target {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

@media (max-width: 640px) {
    .touch-target {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Reduce hover effects on mobile */
    .luxury-card:hover {
        transform: translateY(-4px) scale(1.005);
    }
    
    .luxury-hover:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .luxury-button:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

/* === ADDITIONAL COMPONENT STYLES === */
.navbar-luxury {
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 180, 160, 0.1);
}

.navbar-luxury.scrolled {
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(232, 180, 160, 0.2);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.hero-content {
    background: linear-gradient(135deg, rgba(254, 254, 254, 0.95) 0%, rgba(247, 245, 243, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 180, 160, 0.2);
    border-radius: 2rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .hero-content {
        border-radius: 3rem;
        padding: 3rem;
    }
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(254, 254, 254, 0.98), rgba(250, 249, 247, 0.95));
    border: 1px solid rgba(232, 180, 160, 0.15);
    border-radius: 2rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.stats-card {
    background: linear-gradient(135deg, rgba(254, 254, 254, 0.95), rgba(247, 245, 243, 0.9));
    border: 1px solid rgba(232, 180, 160, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.stats-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.contact-form {
    background: linear-gradient(145deg, rgba(254, 254, 254, 0.98), rgba(250, 249, 247, 0.95));
    border: 1px solid rgba(232, 180, 160, 0.15);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(15px);
}

@media (max-width: 640px) {
    .contact-form {
        border-radius: 1rem;
        padding: 1rem;
    }
}

.form-input {
    background: linear-gradient(145deg, rgba(254, 254, 254, 0.95), rgba(250, 249, 247, 0.9));
    border: 2px solid rgba(232, 180, 160, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, sans-serif;
    min-height: 44px;
}

.form-input:focus {
    border-color: rgba(232, 180, 160, 0.6);
    box-shadow: 0 0 0 3px rgba(232, 180, 160, 0.1);
    outline: none;
}

.form-luxury {
    background: linear-gradient(145deg, rgba(254, 254, 254, 0.98), rgba(250, 249, 247, 0.95));
    border: 2px solid rgba(232, 180, 160, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    min-height: 44px;
}

.form-luxury:focus {
    border-color: rgba(232, 180, 160, 0.6);
    box-shadow: 0 0 0 3px rgba(232, 180, 160, 0.1);
}

.service-card {
    background: linear-gradient(145deg, rgba(254, 254, 254, 0.98), rgba(250, 249, 247, 0.95));
    border: 1px solid rgba(232, 180, 160, 0.15);
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 180, 160, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.footer-luxury {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
}

.footer-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 180, 160, 0.3), transparent);
}

.backdrop-blur-luxury {
    backdrop-filter: blur(20px);
}

.border-luxury {
    border: 1px solid rgba(232, 180, 160, 0.2);
}

.text-shadow-luxury {
    text-shadow: 0 2px 4px rgba(26, 32, 44, 0.1);
}

.gradient-text-luxury {
    background: linear-gradient(135deg, #1a202c, #2d3748, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1);
}

.loading-luxury {
    background: linear-gradient(90deg, rgba(232, 180, 160, 0.1), rgba(232, 180, 160, 0.3), rgba(232, 180, 160, 0.1));
    background-size: 200% 100%;
    animation: luxuryShimmer 2s infinite;
}

.loading-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: luxuryShimmer 2s infinite;
}

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

/* === PRINT STYLES === */
@media print {
    .luxury-button,
    .whatsapp-pulse,
    .whatsapp-glow,
    .animate-luxury-float {
        display: none !important;
    }
    
    .luxury-text-gradient {
        color: #1a202c !important;
        -webkit-text-fill-color: #1a202c !important;
        background: none !important;
    }
    
    .luxury-card {
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
    }
}

/* === LOGO IMAGE STYLES === */
/* Ensure all logo images have transparent backgrounds and no rounded corners */
img[src*="logo-dark.png"],
img[src*="logo-light.png"],
img[alt*="Marine Crafts Logo"] {
    background: transparent !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

/* Ensure logo containers don't have backgrounds or rounded corners */
div:has(img[src*="logo-dark.png"]),
div:has(img[src*="logo-light.png"]),
div:has(img[alt*="Marine Crafts Logo"]) {
    background: transparent !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Target common logo container classes specifically */
.w-12.h-12:has(img[src*="logo"]),
.w-10.h-10:has(img[src*="logo"]),
.w-12.h-12:has(img[alt*="Marine Crafts Logo"]),
.w-10.h-10:has(img[alt*="Marine Crafts Logo"]),
[class*="logo-container"],
div.flex.items-center.justify-center:has(img[src*="logo"]) {
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Additional specificity for navigation logo containers */
nav .w-12.h-12,
nav .w-10.h-10,
nav div:has(img[src*="logo-dark.png"]),
nav div:has(img[src*="logo-light.png"]) {
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Footer logo containers */
footer .w-12.h-12,
footer .w-10.h-10,
footer div:has(img[src*="logo-dark.png"]),
footer div:has(img[src*="logo-light.png"]) {
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Fallback for browsers that don't support :has() - use attribute selectors */
div[class*="flex items-center justify-center"] img[src*="logo-dark.png"],
div[class*="flex items-center justify-center"] img[src*="logo-light.png"] {
    background: transparent !important;
    border-radius: 0 !important;
}

/* Remove any Tailwind background classes that might be applied */
.w-12.h-12.bg-gray-900,
.w-10.h-10.bg-gray-900,
.w-12.h-12.bg-luxury-white,
.w-10.h-10.bg-luxury-white,
.w-12.h-12[class*="bg-"] {
    background: transparent !important;
    background-color: transparent !important;
}

/* === PHONE BUTTON STYLES === */
/* Ensure phone button in floating social media always has blue background */
a[href*="tel:+919880312588"].phone-button,
a[href*="tel:"].phone-button,
.phone-button[href*="tel:"],
a.social-tooltip.phone-button,
a.phone-button.social-tooltip {
    background-color: #1a202c !important; /* deep-navy blue */
    background: #1a202c !important;
}

a[href*="tel:+919880312588"].phone-button:hover,
a[href*="tel:"].phone-button:hover,
.phone-button[href*="tel:"]:hover,
a.social-tooltip.phone-button:hover,
a.phone-button.social-tooltip:hover {
    background-color: #2d3748 !important; /* charcoal - slightly lighter blue on hover */
    background: #2d3748 !important;
}

/* Also target phone buttons by icon class */
a[href*="tel:"]:has(.fa-phone).social-tooltip,
a.social-tooltip[href*="tel:"]:has(.fa-phone),
a[href*="tel:+919880312588"] {
    background-color: #1a202c !important;
    background: #1a202c !important;
}

a[href*="tel:"]:has(.fa-phone).social-tooltip:hover,
a.social-tooltip[href*="tel:"]:has(.fa-phone):hover,
a[href*="tel:+919880312588"]:hover {
    background-color: #2d3748 !important;
    background: #2d3748 !important;
} 