/* ========================================
   INTRA FITOUT - Premium Black Theme
   Custom Stylesheet
   ======================================== */

/* ========================================
   ROOT VARIABLES & RESET
   ======================================== */
:root {
    /* Black Color Scheme */
    --color-black: #000000;
    --color-dark-1: #0a0a0a;
    --color-dark-2: #1a1a1a;
    --color-dark-3: #2a2a2a;
    --color-dark-4: #3a3a3a;
    
    /* Accent Colors */
    --color-gold: #D4AF37;
    --color-gold-light: #F4D03F;
    --color-amber: #FFA500;
    --color-white: #FFFFFF;
    --color-gray-light: #E0E0E0;
    --color-gray: #CCCCCC;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFA500 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    
    /* Effects */
    --transition: all 0.3s ease;
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.95) !important;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--shadow-glow));
}

/* Desktop navbar layout */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

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

.nav-link:hover {
    color: var(--color-gold) !important;
}

/* Logo Styling */
.brand-logo {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.navbar-scrolled .brand-logo {
    height: 55px;
}

/* Navbar Quote Button */
.navbar-cta {
    display: flex;
    align-items: center;
}

.navbar .btn-primary {
    background: var(--gradient-gold);
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    transition: var(--transition);
    white-space: nowrap;
}

.navbar .btn-primary:hover {
    background: linear-gradient(135deg, #f0c14b 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    color: var(--color-black);
}

.navbar .btn-primary i {
    font-size: 0.9rem;
}

/* Mobile CTA Button (visible on mobile navbar) */
.mobile-cta-btn {
    background: var(--gradient-gold);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: var(--color-black);
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #f0c14b 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    color: var(--color-black);
}

/* Responsive navbar button */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 10px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
}

/* Extra small screens - compact button */
@media (max-width: 395px) {
    .mobile-cta-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
        margin-right: 0.25rem;
        white-space: nowrap;
        letter-spacing: -0.3px;
    }
    
    .mobile-cta-btn .fa-calendar-check {
        display: none !important; /* Hide icon on very small screens */
    }
    
    .brand-logo {
        height: 45px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .navbar-toggler {
        padding: 0.2rem 0.5rem;
        font-size: 1rem;
    }
}

/* Ultra small screens - even more compact */
@media (max-width: 359px) {
    .mobile-cta-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        margin-right: 0.2rem;
        letter-spacing: 0px;
    }
    
    /* Change button text to just "Quote" */
    .mobile-cta-btn .btn-text {
        font-size: 0;
    }
    
    .mobile-cta-btn .btn-text::before {
        content: "Quote";
        font-size: 0.7rem;
    }
    
    .brand-logo {
        height: 42px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-toggler {
        padding: 0.2rem 0.4rem;
        font-size: 0.95rem;
    }
    
    .navbar .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    padding-top: 120px; /* Account for fixed navbar on all screen sizes */
}

/* Responsive hero content padding for small screens */
@media (max-width: 767px) {
    .hero-content {
        padding-top: 100px; /* Account for fixed navbar */
    }
}

@media (max-width: 395px) {
    .hero-content {
        padding-top: 90px; /* Slightly less for very small screens */
    }
}

@media (max-width: 359px) {
    .hero-content {
        padding-top: 85px; /* Even less for ultra small screens */
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gray-light);
    font-weight: 400;
}

.hero-description .highlight {
    color: var(--color-gold);
    font-weight: 600;
    position: relative;
    padding: 0 0.5rem;
}

.hero-experience {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-cta {
    margin-top: 2rem;
}

/* Responsive hero typography */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-experience {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 395px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    color: var(--color-black);
}

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

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
}

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

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

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-4 {
    animation: fadeIn 1s ease-out 0.8s both;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--color-dark-1);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

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

.about-content .lead {
    font-size: 1.3rem;
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.highlight-text {
    color: var(--color-gold);
    font-weight: 600;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-white);
}

.feature-item i {
    color: var(--color-gold);
    font-size: 1.3rem;
}

/* Stats Cards */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-gold);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Image Cards */
.about-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 400px;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: var(--transition);
}

.about-image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.image-overlay p {
    color: var(--color-white);
    font-size: 1rem;
    margin: 0;
}

/* Animate on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SPECIALIZATION SECTION
   ======================================== */
.specialization-section {
    padding: var(--section-padding);
    background: var(--color-black);
    position: relative;
}

.specialization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.service-card:hover .service-content h3::after {
    width: 100px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--color-gray-light);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.service-features li i {
    color: var(--color-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ========================================
   JOINERY FACTORY SECTION
   ======================================== */
.joinery-section {
    padding: var(--section-padding);
    background: var(--color-dark-1);
    position: relative;
}

.joinery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.joinery-content .lead {
    font-size: 1.3rem;
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.joinery-content p {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.joinery-scope-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 600;
}

.joinery-scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.joinery-scope-list li {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.joinery-scope-list li:hover {
    transform: translateX(10px);
    color: var(--color-gold);
}

.joinery-scope-list li i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* Joinery Highlight Card */
.joinery-highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.joinery-highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--color-black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.joinery-highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.joinery-highlight-card p {
    color: var(--color-gray-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.highlight-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Joinery Image Cards */
.joinery-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 300px;
}

.joinery-image-card.large {
    height: 400px;
}

.joinery-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.joinery-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: var(--transition);
}

.joinery-image-card:hover .joinery-image-overlay {
    transform: translateY(0);
}

.joinery-image-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.joinery-image-overlay p {
    color: var(--color-white);
    font-size: 1rem;
    margin: 0;
}

.joinery-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: var(--section-padding);
    background: var(--color-black);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 80px 80px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Step Number */
.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Step Icon */
.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-gold);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .step-icon {
    background: var(--gradient-gold);
    color: var(--color-black);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Step Content */
.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--color-gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Step Connector */
.step-connector {
    position: absolute;
    left: 120px;
    bottom: -3rem;
    width: 2px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--color-gold) 0%, transparent 100%);
}

.process-step:last-child .step-connector {
    display: none;
}

/* Alternate animation delays for stagger effect */
.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

.process-step:nth-child(5) {
    animation-delay: 0.5s;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio-section {
    padding: var(--section-padding);
    background: var(--color-dark-1);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Portfolio Gallery - Masonry Grid */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

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

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-gold);
    color: var(--color-black);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.portfolio-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--color-gray-light);
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--color-black);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Benefit Cards */
.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

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

/* Benefit Icon */
.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--color-gold);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-gold);
    color: var(--color-black);
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-gray-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 8rem 0;
    background-image: url('../images/cta-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.3rem;
    color: var(--color-gray-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.cta-buttons .btn {
    min-width: 250px;
}

/* Fade-in animations for CTA */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-section {
    background: var(--color-dark-2);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--color-gray-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-location {
    color: var(--color-gray);
    font-size: 1rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
}

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact li i {
    color: var(--color-gold);
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact li a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--color-gold);
}

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

.footer-links li a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--color-gray);
    margin: 0;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* ========================================
   PLACEHOLDER SECTIONS (Temporary)
   ======================================== */
.section-placeholder {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-1);
    border-top: 1px solid var(--color-dark-3);
}

.section-placeholder h2 {
    font-family: var(--font-heading);
    color: var(--color-gray);
    font-size: 2rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-experience {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content .lead {
        font-size: 1.1rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-image-card {
        height: 300px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-features li {
        font-size: 0.95rem;
    }
    
    .joinery-image-card {
        height: 250px;
    }
    
    .joinery-image-card.large {
        height: 300px;
    }
    
    .joinery-highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .joinery-scope-list li {
        font-size: 1rem;
    }
    
    .process-step {
        grid-template-columns: 60px 60px 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .step-connector {
        left: 90px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 1rem !important;
    }
    
    .hero-cta .me-3 {
        margin-right: 0 !important;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .step-connector {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item img {
        height: 250px;
    }
    
    .portfolio-overlay {
        padding: 1.5rem;
    }
    
    .portfolio-overlay h4 {
        font-size: 1.2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .benefit-card h4 {
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 5rem 0;
        background-attachment: scroll;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        min-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .navbar-scrolled .brand-logo {
        height: 35px;
    }
    
    .footer-logo {
        height: 50px;
    }
}

/* ========================================
   CONSULTATION POPUP MODAL
   ======================================== */
.consultation-modal .modal-content {
    background: var(--color-dark-2);
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.consultation-modal .modal-header {
    background: var(--gradient-gold);
    border-bottom: none;
    padding: 1.5rem 2rem;
}

.consultation-modal .modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-black);
    font-weight: 700;
    margin: 0;
    width: 100%;
}

/* Mobile adjustments for modal heading */
@media (max-width: 576px) {
    .consultation-modal .modal-title {
        font-size: 1.3rem;
    }
    
    .consultation-modal .modal-header {
        padding: 1.2rem 1.5rem;
    }
    
    .consultation-modal .modal-body {
        padding: 1.5rem;
        padding-top: 3rem;
        overflow: visible;
    }
}

/* Ensure modal doesn't clip toast */
.modal-content {
    overflow: visible !important;
}

.modal-dialog {
    overflow: visible !important;
}

.consultation-modal .btn-close {
    filter: brightness(0);
    opacity: 0.8;
}

.consultation-modal .btn-close:hover {
    opacity: 1;
}

.consultation-modal .modal-body {
    padding: 2rem;
    padding-top: 3.5rem; /* Extra space for toast */
    background: var(--color-dark-1);
    position: relative;
    overflow: visible;
    min-height: 400px;
}

/* Form Styling */
.consultation-form .form-label {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-form .form-control {
    background: var(--color-dark-1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--color-white);
    padding: 1rem 1.25rem;
    transition: var(--transition);
    font-size: 1rem;
}

.consultation-form .form-control:focus {
    background: var(--color-dark-1);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--color-white);
    outline: none;
}

.consultation-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

/* Contact Widgets */
.contact-widgets {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.contact-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    gap: 0.5rem;
}

.contact-widget i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.contact-widget span {
    font-size: 0.95rem;
    font-weight: 600;
}

.whatsapp-widget {
    color: #25D366;
}

.whatsapp-widget:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    transform: translateY(-3px);
}

.phone-widget {
    color: var(--color-gold);
}

.phone-widget:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* intl-tel-input customization */
.iti {
    width: 100%;
}

.iti__flag-container {
    background: var(--color-dark-1);
    border-right: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px 0 0 10px;
}

.iti__selected-flag {
    background: transparent;
    padding: 0 0 0 12px;
    height: 100%;
}

.iti__selected-flag:hover {
    background: rgba(212, 175, 55, 0.1);
}

.iti__arrow {
    border-top-color: var(--color-gold);
}

.iti__country-list {
    background: var(--color-dark-2) !important;
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    max-height: 200px;
    border-radius: 10px;
    margin-top: 5px;
}

.iti__country {
    color: var(--color-white) !important;
    padding: 10px 15px;
    background: var(--color-dark-2) !important;
}

.iti__country:hover {
    background: rgba(212, 175, 55, 0.2) !important;
}

.iti__country.iti__highlight {
    background: rgba(212, 175, 55, 0.3) !important;
}

.iti__dial-code {
    color: var(--color-gold) !important;
}

.iti__country-name {
    color: var(--color-white) !important;
}

/* Country Search Input Styling */
.iti__search-input {
    width: 100%;
    padding: 10px 15px;
    background: var(--color-dark-1) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 8px;
    color: var(--color-white) !important;
    font-size: 0.95rem;
    margin-bottom: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.iti__search-input::placeholder {
    color: var(--color-gray) !important;
    opacity: 0.7;
}

.iti__search-input:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: var(--color-dark-2) !important;
}

/* Search container wrapper */
.iti__search-container {
    padding: 10px;
    background: var(--color-dark-2) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========================================
   WHATSAPP STICKY WIDGET
   ======================================== */
.whatsapp-sticky-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-sticky-widget i {
    font-size: 32px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.whatsapp-sticky-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-sticky-widget:hover i {
    transform: rotate(15deg);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .whatsapp-sticky-widget {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-sticky-widget i {
        font-size: 28px;
    }
}

@media (max-width: 395px) {
    .whatsapp-sticky-widget {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-sticky-widget i {
        font-size: 26px;
    }
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
/* Toast container inside modal */
.toast-container-modal {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    pointer-events: auto;
}

/* Make toast clickable */
.toast-container-modal .toast {
    pointer-events: auto;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.toast-container {
    position: fixed !important;
    top: 100px;
    right: 30px;
    z-index: 100000;
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    pointer-events: none;
    visibility: visible !important;
}

.toast-container .toast {
    pointer-events: auto;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.toast {
    background: var(--color-dark-2) !important;
    border-left: 4px solid var(--color-gold) !important;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
    display: flex !important;
    align-items: center;
    gap: 12px;
    min-width: 250px;
    animation: slideInRight 0.4s ease-out;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.toast.toast-success {
    border-left-color: #28a745;
}

.toast.toast-success .toast-icon {
    color: #28a745;
}

.toast.toast-error {
    border-left-color: #dc3545;
}

.toast.toast-error .toast-icon {
    color: #dc3545;
}

.toast.toast-warning {
    border-left-color: #ffc107;
}

.toast.toast-warning .toast-icon {
    color: #ffc107;
}

.toast.toast-info {
    border-left-color: var(--color-gold);
}

.toast.toast-info .toast-icon {
    color: var(--color-gold);
}

.toast-icon {
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.toast-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.toast-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--color-gray);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.toast-close:hover {
    color: var(--color-white);
    transform: rotate(90deg);
}

.toast.toast-hiding {
    animation: slideOutRight 0.4s ease-out forwards;
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutTop {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Progress bar for auto-dismiss */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--color-gold);
    width: 100%;
    transform-origin: left;
    animation: toastProgress 5s linear forwards;
}

.toast.toast-success .toast-progress {
    background: #28a745;
}

.toast.toast-error .toast-progress {
    background: #dc3545;
}

.toast.toast-warning .toast-progress {
    background: #ffc107;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Responsive toast notifications */
@media (max-width: 767px) {
    .toast-container {
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
        top: 80px !important;
        width: auto !important;
    }
    
    .toast {
        min-width: auto !important;
        max-width: 100% !important;
        padding: 12px 15px !important;
        gap: 10px !important;
        width: calc(100vw - 20px) !important;
        box-sizing: border-box !important;
    }
    
    .toast-content {
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .toast-icon {
        font-size: 18px !important;
        flex-shrink: 0;
    }
    
    .toast-title {
        font-size: 0.95rem !important;
        word-wrap: break-word;
    }
    
    .toast-message {
        font-size: 0.85rem !important;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .toast-close {
        font-size: 18px !important;
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0;
    }
}

@media (max-width: 395px) {
    .toast-container {
        top: 70px !important;
        right: 8px !important;
        left: 8px !important;
    }
    
    .toast {
        padding: 10px 12px !important;
        gap: 8px !important;
        width: calc(100vw - 16px) !important;
    }
    
    .toast-icon {
        font-size: 16px !important;
    }
    
    .toast-title {
        font-size: 0.9rem !important;
    }
    
    .toast-message {
        font-size: 0.8rem !important;
        line-height: 1.35;
    }
    
    .toast-close {
        font-size: 16px !important;
        width: 18px !important;
        height: 18px !important;
    }
}

/* Extra small screens */
@media (max-width: 359px) {
    .toast-container {
        top: 65px !important;
        right: 5px !important;
        left: 5px !important;
    }
    
    .toast {
        padding: 8px 10px !important;
        gap: 6px !important;
        width: calc(100vw - 10px) !important;
    }
    
    .toast-icon {
        font-size: 14px !important;
    }
    
    .toast-title {
        font-size: 0.85rem !important;
    }
    
    .toast-message {
        font-size: 0.75rem !important;
        line-height: 1.3;
    }
}

