:root {
    --primary-color: #1a237e;
    --luxury-blue: #0d47a1;
    --deep-pink: #ff6b6b;
    --gradient-purple: rgb(131,58,180);
    --gradient-red: rgb(253,29,29);
    --gradient-gold: rgb(252,176,69);
    --gold: #d4af37;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --secondary-color: #17537a;
    --accent-pink: #ffd6e0;
    --soft-blue: #e8f6ff;
    --warm-white: #fff9f9;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--luxury-blue);
    line-height: 1.3;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    background: linear-gradient(135deg, 
        var(--luxury-blue),
        var(--gradient-purple) 50%,
        var(--gradient-gold)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.logo .subtitle {
    font-size: 0.85rem;
    background: linear-gradient(90deg, 
        var(--gradient-purple),
        var(--gradient-red) 50%,
        var(--gradient-gold)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    font-weight: 600;
    margin-top: 6px;
    text-transform: uppercase;
    position: relative;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a:not(.cta-button) {
    text-decoration: none;
    color: var(--luxury-blue);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    opacity: 0.9;
    padding: 4px 0;
}

.nav-links a:not(.cta-button):hover {
    color: var(--luxury-blue);
    opacity: 1;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--gradient-purple) 0%, var(--gradient-red) 64%, var(--gradient-gold) 99%);
    transition: width 0.3s ease;
    opacity: 0.8;
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

.nav-links .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin-left: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(131,58,180, 0.2);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 25%;   
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.3)
    );
    filter: blur(70px);
    z-index: -1;
    border-radius: 150px;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    text-shadow: 
        0 0 40px rgba(255, 255, 255, 0.4),
        -1px -1px 0 rgba(0, 0, 0, 0.9),
        1px -1px 0 rgba(0, 0, 0, 0.9),
        -1px 1px 0 rgba(0, 0, 0, 0.9),
        1px 1px 0 rgba(0, 0, 0, 0.9),
        2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    letter-spacing: 6px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 
        /* Bright white glow */
        0 0 30px rgba(255, 255, 255, 0.6),
        /* Sharp dark outline */
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        /* Extra outline for depth */
        -2px -2px 1px rgba(0, 0, 0, 0.8),
        2px -2px 1px rgba(0, 0, 0, 0.8),
        -2px 2px 1px rgba(0, 0, 0, 0.8),
        2px 2px 1px rgba(0, 0, 0, 0.8);
    padding: 25px 40px;
    border-radius: 12px;
    display: inline-block;
    position: relative;
    z-index: 1;
    animation: textShine 3s ease-in-out infinite alternate;
}

@keyframes textShine {
    from {
        color: #ffffff;
    }
    to {
        color: #f0f0f0;
    }
}

.hero-content p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4),
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

/* Unified Card Styling */
.glass-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(131,58,180, 0.1);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 15px rgba(131,58,180, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transform: translateY(0);
    will-change: transform;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-purple) 0%, var(--gradient-red) 64%, var(--gradient-gold) 99%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.04),
        0 20px 30px -10px rgba(131,58,180, 0.15);
    border-color: rgba(131,58,180, 0.2);
}

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

.glass-card i,
.glass-card .product-icon {
    font-size: 2.8rem;
    color: var(--luxury-blue);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1rem;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(131,58,180, 0.1);
}

.glass-card:hover i,
.glass-card:hover .product-icon {
    transform: scale(1.15) translateY(-2px);
    background: linear-gradient(90deg, var(--gradient-purple) 0%, var(--gradient-red) 64%, var(--gradient-gold) 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(131,58,180, 0.2));
}

.glass-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--luxury-blue);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: transform 0.4s ease;
}

.glass-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
    transition: transform 0.4s ease;
    margin-top: 0.5rem;
}

.glass-card:hover h3,
.glass-card:hover p {
    transform: translateY(-3px);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.process-step i {
    font-size: 2.5rem;
    color: var(--luxury-blue);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.process-step:hover i {
    transform: scale(1.15);
    background: linear-gradient(90deg, var(--gradient-purple) 0%, var(--gradient-red) 64%, var(--gradient-gold) 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Product Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.product-card .product-icon {
    font-size: 2.5rem;
    color: var(--luxury-blue);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.15);
    background: linear-gradient(90deg, var(--gradient-purple) 0%, var(--gradient-red) 64%, var(--gradient-gold) 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-card i {
    font-size: 2.5rem;
    color: var(--luxury-blue);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.about-card:hover i {
    transform: scale(1.15);
    background: linear-gradient(90deg, var(--gradient-purple) 0%, var(--gradient-red) 64%, var(--gradient-gold) 99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Headers */
.section {
    padding: 6rem 5%;
    position: relative;
    background: linear-gradient(135deg, var(--warm-white), var(--soft-blue));
}

.section:nth-child(even) {
    background: linear-gradient(135deg, var(--warm-white), rgba(131,58,180,0.1));
}

.section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--luxury-blue);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
}

.section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .process-grid,
    .product-grid,
    .about-grid {
        padding: 0 1rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .glass-card h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .logo .subtitle {
        font-size: 0.7rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .glass-card h3 {
        font-size: 1.2rem;
    }

    .glass-card p {
        font-size: 0.9rem;
    }

    .contact-phone {
        font-size: 1rem;
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--gradient-purple) 0%, var(--gradient-red) 64%, var(--gradient-gold) 99%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(131,58,180, 0.2);
}

/* Contact Form */
.contact-container {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    border: 1px solid rgba(131,58,180, 0.1);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 15px rgba(131,58,180, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.04),
        0 20px 30px -10px rgba(131,58,180, 0.15);
    border-color: rgba(131,58,180, 0.2);
}

.contact-form h3 {
    color: var(--luxury-blue);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(131,58,180, 0.1);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gradient-purple);
    box-shadow: 0 0 10px rgba(131,58,180, 0.1);
    transform: translateY(-2px);
}

.contact-form .cta-button {
    margin-top: 1rem;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
}

.contact-phone {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--luxury-blue);
    font-weight: 500;
}

.contact-phone-small {
    text-align: center;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: linear-gradient(90deg, var(--gradient-purple) 0%, var(--gradient-red) 64%, var(--gradient-gold) 99%);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--gold);
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-block;
    margin: 0.5rem 0;
}

.footer-section a:hover {
    color: var(--deep-pink);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.8;
    transition: all 0.3s;
}

.social-links a:hover {
    opacity: 1;
    color: var(--deep-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
    }
}

/* Animation Overrides */
[data-aos] {
    pointer-events: auto !important;
}

[data-aos].aos-animate {
    pointer-events: auto !important;
}

.aos-init[data-aos][data-aos].aos-animate {
    transform: translate3d(0, 0, 0) !important;
    }

/* Grid Layouts and Responsive Design */
.process-grid,
.product-grid,
.about-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid,
    .about-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .section h2 {
        font-size: 2rem;
    }
}
