/* =============================================
   IMPORTS AND FONT DECLARATIONS
   ============================================= */
@import url("https://api.fontshare.com/v2/css?f[]=archivo@100,200,300,400,500,600,700,800,900&f[]=clash-display@200,300,400,500,600,700&display=swap");

/* =============================================
   CSS CUSTOM PROPERTIES / VARIABLES
   ============================================= */
:root {
    /* Main Website Color Variables */
    --primary-orange: #e67e22;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --grey-divider: #808080;
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --orange-light: #f39c12;
    --orange-dark: #d35400;
    --text-light: #ecf0f1;
    --card-bg: #2c2c2c;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-archivo: "Archivo", sans-serif;
    --font-clash-display: "Clash Display", sans-serif;

    /* Layout */
    --max-width: 2100px;

    /* Spacing */
    --spacing-xs: 25px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Border Radius */
    --radius-md: 25px;

    /* Slider Variables */
    --slide-width: min(25vw, 300px);
    --slide-aspect: 2 / 3;
    --slide-transition-duration: 800ms;
    --slide-transition-easing: ease;
}

/* =============================================
   RESET AND BASE STYLES
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.scroll-target {
    scroll-margin-top: 120px; /* Adjust based on your header height */
}


html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    background-color: #000000e8;
    color: var(--white);
    overflow-x: hidden;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

button:focus {
    outline: none;
    border: none;
}

.header-divider {
    border: none;
    height: 4px;
    width: 100%;
    margin: 20px 0;
    background: linear-gradient(to right, transparent, var(--primary-orange), transparent);
}

/* =============================================
   FIXED BACKGROUND STYLES
   ============================================= */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.fixed-background .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.fixed-background .menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.scrollable-content {
    position: relative;
    z-index: 1;
}

/* =============================================
   HEADER SECTION
   ============================================= */
.main-header {
    margin-top: 40px;
    position: relative;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    transition: all var(--transition-medium);
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.95) 0%,
        rgba(20, 20, 20, 0.9) 50%,
        rgba(40, 40, 40, 0.95) 100%);
    border-bottom: 3px solid rgba(255, 215, 0, 0.9);
    border-top: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px) saturate(1.1);
}

.header-content {
    max-width: 2100px;
    width: 100%;
    transition: padding var(--transition-medium);
}

.header-navigation {
    display: flex;
    justify-content: space-between; /* Keep original space-between */
    align-items: center;
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 8px var(--spacing-lg);
    /* Responsive gap that shrinks as screen gets smaller */
    gap: max(20px, min(650px, 40vw - 400px));
    transition: gap 0.3s ease;
}

/* =============================================
   LOGO SECTION
   ============================================= */
.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    z-index: 1001;
    position: relative;
    height: 240px;
}

.brand-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 150px;
    background: linear-gradient(145deg, #4b4747ab, #1f1f1f, #3f3324);
    border: 1px solid #57000017;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: 
        all var(--transition-fast),
        background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border 0.3s ease-out,
        transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.2s ease-out;
}

.brand-logo a:hover {
    transform: scale(1.03) translateY(-2px);
    border-color: #ffc107;
    background: linear-gradient(145deg, #4b4747ab, #1f1f1f, #3f3324);
    border: 1px solid #e4a700a6;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-logo a:active {
    transform: scale(0.98) translateY(1px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #3f3324, #1f1f1f, #4b4747ab);
    border: 2px solid #cc8400;
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background 0.1s ease;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 200px;
    width: auto;
    margin: 0;
    object-fit: contain;
    transition: all var(--transition-fast);
    filter: 
        drop-shadow(12px 20px 40px rgba(0, 0, 0, 0.9))
        drop-shadow(25px 35px 70px rgba(0, 0, 0, 0.4))
        brightness(1.05)
        contrast(1.02);
}

.logo-image:hover {
    filter: 
        drop-shadow(15px 25px 50px rgba(0, 0, 0, 0.95))
        drop-shadow(30px 40px 80px rgba(0, 0, 0, 0.5))
        drop-shadow(45px 55px 100px rgba(0, 0, 0, 0.2))
        brightness(1.08)
        contrast(1.05);
    transform: translateY(-3px);
}

/* =============================================
   NAVIGATION MENU
   ============================================= */
.primary-navigation {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    margin-left: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    margin: 0 15px;
    padding: 15px 30px;
    /* Use consistent gradient background approach */
    background: linear-gradient(135deg, 
        rgba(255, 199, 79, 0.959) 0%,
        rgba(255, 199, 79, 0.959) 100%);
    border-radius: 100px;
    box-shadow: 
        0 2px 0 var(--primary-orange),
        0 4px 8px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Optimized transitions */
    transition: 
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-image 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    will-change: transform, box-shadow, background;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    /* Add opacity control */
    opacity: 0;
}

.nav-menu:not(:hover)::before {
    left: -100%;
    transition: left 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19), opacity 0.2s ease;
    opacity: 0;
}

.nav-menu:hover::before {
    left: 100%;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s ease;
    opacity: 1;
}

.nav-menu:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 0 var(--primary-orange),
        0 16px 32px rgba(230, 125, 34, 0.25),
        0 24px 48px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    /* Change to background-image instead of background */
    background-image: linear-gradient(135deg, 
        rgba(255, 220, 100, 0.98) 0%,
        rgba(255, 199, 79, 0.98) 50%,
        rgba(240, 180, 60, 0.98) 100%);
}

/* Optional: Add focus state for accessibility */
.nav-menu:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    transition: outline 0.2s ease-in-out;
}

.nav-item {
    position: relative;
    margin: 0;
}

/* Navigation Links - KEEP SAME SIZE */
.nav-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px; /* KEEP original */
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 24px; /* KEEP original */
    background-color: rgb(255, 255, 255);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(240, 240, 240);
    position: relative;
    overflow: hidden;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

/* All existing navbar-link states remain exactly the same */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 102, 0, 0.08), 
        transparent);
    transition: left var(--transition-slow);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        rgb(255, 102, 0),
        transparent);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.nav-link:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(1px) scale(0.98);
    border-color: rgb(255, 102, 0);
    color: rgb(20, 20, 20);
    
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 1px 3px rgba(255, 102, 0, 0.15);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:focus {
    outline: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(255, 102, 0, 0.3);
}

.nav-link--active {
    color: #ffffff;
    background-color: rgb(255, 149, 28);
    border: 2px solid rgb(255, 136, 0);
    
    transform: translateY(1px) scale(0.98);
    
    box-shadow: 
        0 1px 6px rgba(255, 136, 0, 0.3),
        inset 0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link--active:hover {
    background-color: rgb(255, 123, 0);
    transform: translateY(1px) scale(0.98);
    border-color: rgb(228, 102, 0);
    color: #ffffff;
    
    box-shadow: 
        0 2px 10px rgba(255, 136, 0, 0.35),
        inset 0 2px 8px rgba(0, 0, 0, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.nav-link--active::after {
    width: 0;
}

.nav-link:active {
    transform: translateY(2px) scale(0.96);
    
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    
    background-color: rgb(245, 245, 245);
    border-color: rgb(220, 220, 220);
    
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.1s ease,
        border-color 0.1s ease;
}

.nav-link--active:active {
    transform: translateY(2px) scale(0.96);
    
    box-shadow: 
        0 0px 2px rgba(255, 136, 0, 0.4),
        inset 0 3px 10px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    
    background-color: rgb(230, 115, 10);
    border-color: rgb(200, 100, 0);
    
    transition: 
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.1s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-link {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .nav-link:hover {
        transform: translateY(0.5px) scale(0.99); /* Less dramatic on mobile */
    }
    
    /* Adjusted 3D effect for mobile */
    .nav-link:active {
        transform: translateY(1px) scale(0.98);
    }
    
    .nav-link--active {
        transform: translateY(0.5px) scale(0.99);
    }
    
    .nav-link--active:hover {
        transform: translateY(0.5px) scale(0.99);
    }
    
    .nav-link--active:active {
        transform: translateY(1px) scale(0.98);
    }
}

/* =============================================
   MOBILE MENU TOGGLE
   ============================================= */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 199, 79, 0.9);
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.8);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1003;
}

.mobile-menu-btn:hover {
    background: rgba(255, 215, 0, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}




/* =============================================
   FOOTER SECTION
   ============================================= */
.footer {
    margin-top: -20px;
    background-color: #000000e0;
    padding: 121px 20px 20px;
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Newsletter Section */
.newsletter-container {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    transition: all 0.3s ease;
    margin-bottom: -60px;
    margin-top: -40px;
}

.newsletter-section {
    max-width: 510px;
    width: 100%;
    text-align: right;
    padding: 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-left: 0;
}

.newsletter-section:hover {
    background: transparent;
    transform: translateY(-3px);
    animation: sectionPulse 2s ease-in-out infinite;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%;
    animation: borderGlow 3s ease-in-out infinite;
}

.newsletter-section:hover::before {
    opacity: 1;
}

.newsletter-section h2 {
    color: #ffae00;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: "Boldonse", system-ui;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.newsletter-section:hover h2 {
    color: #fff;
    transform: translateX(10px);
}

.newsletter-form {
    justify-content: flex-end;
    display: flex;
    margin: 0;
}

.input-wrapper {
    display: flex;
    max-width: 400px;
    width: 100%;
    background: #fff;
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.input-wrapper input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
    font-family: "Quicksand", sans-serif;
    transition: all 0.3s ease;
}

.input-wrapper:hover input {
    color: #000;
    font-weight: 500;
}

.input-wrapper input::placeholder {
    color: #999;
    font-weight: 300;
    transition: all 0.3s ease;
}

.input-wrapper:hover input::placeholder {
    color: #666;
}

.input-wrapper button {
    outline: #000 1px solid;
    background: rgb(255, 166, 0);
    color: #525050;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 4px;
    margin-top: 5px;
}

.input-wrapper button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgb(255, 153, 0);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.input-wrapper button:hover::before {
    width: 200%;
    height: 200%;
}

.input-wrapper button:hover {
    background: #111111;
    color: #000;
    transform: scale(1.08);
}

.input-wrapper button:active {
    transform: scale(0.95);
}

.input-wrapper button svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.input-wrapper button:hover svg {
    transform: translateX(3px) rotate(10deg);
}

/* Section Divider */
.section-divider2 {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffae00, transparent);
    margin: 60px 0;
    width: 100%;
}

/* Footer Logo */
.footer-logo {
    grid-column: 1;
}

.footer-logo img {
    max-width: 230px;
    height: auto;
    transition: transform 0.8s ease-out 0.2s, filter 0.8s ease-out 0.2s;
    cursor: pointer;
    filter: brightness(1);
    transform: scale(1) rotate(0deg);
}

.footer-logo img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.1) drop-shadow(0 8px 25px rgba(255, 107, 107, 0.3));
    transition-delay: 0s;
}

.footer-logo img:active {
    transform: scale(0.95) rotate(-1deg);
    transition: transform 0.1s ease;
}

/* Footer Sections */
.footer-section {
    margin-top: -60px;
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section h3::before,
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section h3::before {
    height: 2px;
    background-color: #8a8a8a;
    bottom: 5px;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.footer-section h3::after {
    height: 1px;
    background-color: #666;
    transform: scaleX(0.6);
    transform-origin: left;
}

.footer-section h3:hover::after {
    transform: scaleX(1);
    background-color: #ff893a;
    box-shadow: 0 1px 5px rgba(255, 107, 107, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(8px);
    padding-left: 5px;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section ul li a:active {
    transform: translateX(5px) scale(0.95);
    transition: transform 0.1s ease;
}

/* Get In Touch Section */
.get-in-touch {
    grid-column: 4;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    border-radius: 5px;
    color: #cccccc;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-icons a i,
.social-icons a svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 2;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff6b6b;
    border-radius: 5px;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-icons a:hover::before {
    transform: scale(1);
}

.social-icons a:hover {
    color: white;
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.social-icons a:active {
    transform: translateY(-2px) rotate(2deg) scale(1.05);
    transition: transform 0.1s ease;
    animation: bounce 0.6s;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 12px;
}

/* =============================================
   BLOG - SECTION
   ============================================= */
.blog-hero {
    margin-bottom: 15px;
    background-color: #121212;
    padding: 200px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.blog-hero .container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.blog-hero h1 {
    color: #e09d00;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blog-hero p {
    color: #ffde95;
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(187, 122, 0, 0.5);
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   MOBILE RESPONSIVE STYLES
   ============================================= */

/* Tablet Landscape - 1024px and below */
@media screen and (max-width: 1024px) {
    .blog-hero {
        padding: 150px 20px;
        min-height: 70vh;
    }
    
    .blog-hero h1 {
        font-size: 3rem;
        margin-bottom: 18px;
    }
    
    .blog-hero p {
        font-size: 1.3rem;
        line-height: 1.7;
    }
}

/* Tablet Portrait - 768px and below */
@media screen and (max-width: 768px) {


    .blog-hero {
        padding: 120px 15px;
        min-height: 60vh;
        margin-top: 80px; /* Account for fixed header */
        margin-bottom: 10px;
    }
    
    .blog-hero .container {
        max-width: 600px;
        padding: 0 15px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    .blog-hero p {
        font-size: 1.2rem;
        line-height: 1.6;
        padding: 0 10px;
    }
}

/* Large Mobile - 480px and below */
@media screen and (max-width: 480px) {



    .blog-hero {
        padding: 100px 10px;
        min-height: 50vh;
        margin-top: 70px;
    }
    
    .blog-hero .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        letter-spacing: 0px;
        line-height: 1.1;
    }
    
    .blog-hero p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 5px;
        text-shadow: 1px 1px 3px rgba(187, 122, 0, 0.3);
    }
}

/* Extra Small Mobile - 360px and below */
@media screen and (max-width: 360px) {
    .blog-hero {
        padding: 80px 5px;
        min-height: 45vh;
        margin-top: 60px;
    }
    
    .blog-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .blog-hero p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .blog-hero {
        padding: 60px 15px;
        min-height: 85vh;
        margin-top: 60px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .blog-hero p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Performance optimization for mobile */
@media screen and (max-width: 768px) {
    /* Reduce animation complexity on mobile for better performance */
    .blog-hero,
    .blog-hero h1,
    .blog-hero p {
        animation-duration: 0.4s;
    }
    
    /* Simplify transforms for smoother animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .blog-hero {
        /* Ensure proper touch spacing */
        padding: 100px 15px;
    }
    
    /* Optimize animations for touch devices */
    .blog-hero,
    .blog-hero h1,
    .blog-hero p {
        animation-timing-function: ease-out;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .blog-hero h1,
    .blog-hero p {
        -webkit-font-smoothing: subpixel-antialiased;
        -moz-osx-font-smoothing: auto;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .blog-hero,
    .blog-hero h1,
    .blog-hero p {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* =============================================
   MOBILE RESPONSIVE (768px and below)
   ============================================= */
@media (max-width: 768px) {

    .main-header{margin-top: 25px;}
    
    /* ===== UTILITY ELEMENTS ===== */
    .header-divider {
        margin: 15px auto;
    }
    
    .footer-divider {
        margin: 0;
    }
    
    /* ===== HEADER SECTION ===== */
    .header-content {
        padding: 0 20px;
    }

    .header-navigation {
        padding: 0 15px;
    }

    /* Logo Styles */
    .brand-logo {
        transition: all 0.3s ease;
    }

    .logo-image {
        height: 120px;
    }

    .primary-navigation {
        margin-left: 15px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 12px;
        background: rgba(255, 199, 79, 0.95);
        border-radius: 15px;
        border: 2px solid rgba(255, 215, 0, 0.8);
        transition: all var(--transition-fast);
        box-shadow: 
            0 2px 0 var(--primary-orange),
            0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1003;
    }

    .mobile-menu-btn:hover {
        background: linear-gradient(135deg, 
            rgba(255, 220, 100, 0.98) 0%,
            rgba(255, 199, 79, 0.98) 50%,
            rgba(240, 180, 60, 0.98) 100%);
        transform: translateY(-2px);
        box-shadow: 
            0 4px 0 var(--primary-orange),
            0 8px 15px rgba(230, 125, 34, 0.2);
    }

    .mobile-menu-btn .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 2px 0;
        transition: all var(--transition-fast);
        border-radius: 20px;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary-orange);
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary-orange);
    }

    /* Hide Desktop Menu on Mobile */
    .nav-menu:not(.mobile-menu):not(.active) {
        display: none;
    }

    /* Mobile Navigation Menu */
    .nav-menu.active {
        position: fixed;
        top: 180px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        margin: 0;
        padding: 25px 20px;
        
        background: linear-gradient(145deg, 
            rgba(5, 0, 0, 0.95) 0%,
            rgba(10, 5, 0, 0.98) 50%,
            rgba(5, 0, 0, 0.95) 100%);
        border-radius: 30px;
        
        border: 2px solid rgba(255, 217, 0, 0.6);
        outline: 1px solid rgba(255, 217, 0, 0.3);
        box-shadow: 
            0 0 0 8px rgba(0, 0, 0, 0.4),
            0 15px 50px rgba(0, 0, 0, 0.8),
            0 25px 70px rgba(0, 0, 0, 0.6),
            0 5px 15px rgba(255, 217, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        
        display: flex;
        flex-direction: column;
        gap: 18px;
        list-style: none;
        z-index: 1002;
        
        opacity: 1;
        visibility: visible;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Hidden state for mobile menu */
    .nav-menu:not(.active) {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-20px) scale(0.95);
        transition: all 0.3s ease;
    }

    /* Mobile Menu Background Animation */
    .nav-menu.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, 
            rgba(255, 217, 0, 0.05) 0%, 
            transparent 70%);
        border-radius: 18px;
        z-index: -1;
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% { 
            opacity: 0.3;
            transform: scale(0.95);
        }
        50% { 
            opacity: 0.6;
            transform: scale(1.05);
        }
    }

    /* Mobile Menu Items */
    .nav-menu.active .nav-item {
        width: 100%;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.4s ease forwards;
    }

    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.3s; }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Menu Links */
    .nav-menu.active .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        font-family: var(--font-primary);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 16px 30px;
        
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 217, 0, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
        border-radius: 12px;
        border: 1px solid rgba(255, 217, 0, 0.2);
        
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        user-select: none;
        transition: all var(--transition-medium);
        
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    /* Mobile Link Hover Animation */
    .nav-menu.active .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 217, 0, 0.2), 
            transparent);
        transition: left 0.6s ease;
    }

    .nav-menu.active .nav-link:hover::before {
        left: 100%;
    }

    /* Mobile Link Hover State */
    .nav-menu.active .nav-link:hover {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 0.15) 0%,
            rgba(255, 217, 0, 0.1) 50%,
            rgba(255, 217, 0, 0.15) 100%);
        border-color: rgba(255, 217, 0, 0.5);
        color: #ffd900;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 6px 15px rgba(0, 0, 0, 0.4),
            0 2px 8px rgba(255, 217, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    /* Active Link State */
    .nav-menu.active .nav-link--active {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 0.9) 0%,
            rgba(255, 149, 28, 0.9) 100%);
        border-color: rgba(255, 217, 0, 0.8);
        color: #000000;
        font-weight: 700;
        box-shadow: 
            0 4px 12px rgba(255, 217, 0, 0.4),
            inset 0 2px 6px rgba(0, 0, 0, 0.1),
            inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    }

    .nav-menu.active .nav-link--active:hover {
        background: linear-gradient(135deg, 
            rgba(255, 217, 0, 1) 0%,
            rgba(255, 149, 28, 1) 100%);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 6px 18px rgba(255, 217, 0, 0.5),
            inset 0 2px 6px rgba(0, 0, 0, 0.15),
            inset 0 -1px 0 rgba(255, 255, 255, 0.4);
    }

    /* Mobile Link Active Press State */
    .nav-menu.active .nav-link:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.4),
            inset 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Body States */
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    body.menu-open .brand-logo {
        transform: scale(1.05) ;
        pointer-events: none;
    }

}

/* =============================================
   SMALL MOBILE RESPONSIVE (480px and below)
   ============================================= */
@media (max-width: 480px) {
    
    /* ===== HEADER SECTION ===== */
    .header-content {
        padding: 0 15px;
    }

    .header-navigation {
        padding: 0 10px;
    }

    .logo-image {
        height: 100px;
    }

    /* Mobile Menu Adjustments */
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 80px 20px 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 16px 20px;
        font-size: 15px;
    }

}


/* ===== Mobile Responsive Footer ===== */
@media (max-width: 768px) {



    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Newsletter full width + stacked */
    .newsletter-container {
        justify-content: center;
        margin: 0 0 -45px 0;
    }

    .newsletter-section {
        text-align: center;
        padding: 15px;
        margin-top: 0;
    }

    .newsletter-form {
        justify-content: center;
        margin-top: 25px;
    }

    .input-wrapper {
        max-width: 100%;
    }

    .input-wrapper input {
        margin-bottom: 10px;
        font-size: 14px;
        text-align: center;
    }

    /* Footer sections stacked */
    .footer-section {
        margin-top: 0;
        align-items: center;
    }

    .footer-section h3::before,
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a {
        font-size: 18px;
    }

    /* Get in Touch full width */
    .get-in-touch {
        grid-column: auto;
        text-align: center;
    }

    .contact-info p {
        font-size: 14px;
    }

    /* Social icons centered */
    .social-icons {
        margin-bottom: 10px;
        justify-content: center;
    }

    .section-divider2{
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 10px 15px;
        font-size: 15px;
    }

    .newsletter-section h2 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .input-wrapper input {
        font-size: 14px;
        padding: 10px;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-section ul li a {
        font-size: 16px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
    }
}
