/* Taly Print - Main Stylesheet */

:root {
    --primary-color: #5276BA;
    --secondary-color: #F16A4E;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #5276BA;
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}

.site-header.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.site-header.sticky .main-nav a,
.site-header.sticky .logo,
.site-header.sticky .logo a {
    color: #5276BA;
    text-shadow: none;
}

.site-header.sticky .main-nav a::after {
    background: #5276BA;
}

.site-header.sticky .main-nav a:hover {
    color: #5276BA;
}

.site-header.sticky .mobile-menu-toggle {
    color: #5276BA;
    filter: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    overflow: visible;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo-image {
    max-height: 70px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav {
    position: relative;
    overflow: visible;
}

.nav-item {
    position: relative;
}

.has-mega > a::after {
    content: '▾';
    font-size: 12px;
    margin-left: 6px;
    vertical-align: middle;
}

.mega-menu {
    position: fixed;
    left: 50%;
    top: 90px;
    width: min(900px, 92vw);
    max-width: 900px;
    padding-top: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translate(-50%, 8px);
    z-index: 1200;
}

.mega-menu-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(82, 118, 186, 0.12);
    padding: 18px;
    display: grid;
    gap: 20px;
}

.mega-menu-content.single-col {
    grid-template-columns: 1fr;
}

.mega-menu-column .mega-kicker {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.8px;
    color: #6b7390;
    margin: 0 0 6px;
    font-weight: 700;
}

.mega-menu-column h3 {
    margin: 0 0 10px;
    color: #1f2a3d;
}

.mega-subtext {
    margin: 0 0 14px;
    color: #4a5470;
    line-height: 1.5;
}

.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.mega-links a {
    color: #2c3650;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.mega-links a:hover {
    color: var(--primary-color);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
}

.mega-menu-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-card {
    display: grid;
    grid-template-rows: 120px 1fr;
    gap: 10px;
    padding: 11px;
    border-radius: 12px;
    border: 1px solid rgba(82, 118, 186, 0.1);
    text-decoration: none;
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    color: inherit;
}

.mega-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(82, 118, 186, 0.28);
}

.mega-card-thumb {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #eef1f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-card-placeholder {
    font-size: 22px;
}

.mega-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-card-name {
    font-weight: 700;
    color: #1f2a3d;
    line-height: 1.2;
    font-size: 15px;
}

.mega-card-meta {
    font-size: 13px;
    color: #6b7390;
}

.mega-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    flex-wrap: wrap;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.open .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .mega-menu {
        position: static;
        left: auto;
        top: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        padding-top: 12px;
    }
    .mega-menu-content {
        grid-template-columns: 1fr;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }
}

.main-nav a {
    text-decoration: none;
    color: #5276BA;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.5px;
}

.hero-slider .site-header .main-nav a,
.hero-slider .site-header .logo,
.hero-slider .site-header .logo a {
    color: #5276BA;
    text-shadow: none;
}

.hero-slider .site-header .mobile-menu-toggle {
    color: #5276BA;
    filter: none;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #5276BA;
    transition: width 0.3s;
    border-radius: 2px;
}

.hero-slider .site-header .main-nav a::after {
    background: #5276BA;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #5276BA;
}

.hero-slider .site-header .main-nav a:hover {
    color: #5276BA;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #5276BA;
    padding: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #4266AA;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Main Content Spacing */
main {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 100vh;
}

/* Sections */
section {
    padding: 60px 20px;
    position: relative;
}

section:not(.hero-slider):not(.cta-section) {
    z-index: 1;
    background: inherit;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 60px 20px !important;
}


/* Content sections flow naturally after slider */

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #5276BA;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5276BA 0%, #F16A4E 100%);
    border-radius: 2px;
}

/* Features */
.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(82, 118, 186, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(241, 106, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .features-grid {
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(82, 118, 186, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(82, 118, 186, 0.02) 0%, rgba(241, 106, 78, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:nth-child(1)::after {
    background: linear-gradient(135deg, rgba(82, 118, 186, 0.03) 0%, rgba(107, 143, 212, 0.03) 100%);
}

.feature-card:nth-child(2)::after {
    background: linear-gradient(135deg, rgba(241, 106, 78, 0.03) 0%, rgba(255, 138, 107, 0.03) 100%);
}

.feature-card:nth-child(3)::after {
    background: linear-gradient(135deg, rgba(66, 102, 170, 0.03) 0%, rgba(82, 118, 186, 0.03) 100%);
}

.feature-card:nth-child(4)::after {
    background: linear-gradient(135deg, rgba(225, 90, 62, 0.03) 0%, rgba(241, 106, 78, 0.03) 100%);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5276BA 0%, #F16A4E 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, #5276BA 0%, #6B8FD4 100%);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #F16A4E 0%, #FF8A6B 100%);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #5276BA 0%, #4266AA 100%);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, #F16A4E 0%, #E15A3E 100%);
}

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

.feature-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(82, 118, 186, 0.2);
}

.feature-card:nth-child(1):hover {
    box-shadow: 0 15px 35px rgba(82, 118, 186, 0.18),
                0 0 0 2px rgba(82, 118, 186, 0.12);
    border-color: rgba(82, 118, 186, 0.25);
}

.feature-card:nth-child(2):hover {
    box-shadow: 0 15px 35px rgba(241, 106, 78, 0.18),
                0 0 0 2px rgba(241, 106, 78, 0.12);
    border-color: rgba(241, 106, 78, 0.25);
}

.feature-card:nth-child(3):hover {
    box-shadow: 0 15px 35px rgba(66, 102, 170, 0.18),
                0 0 0 2px rgba(66, 102, 170, 0.12);
    border-color: rgba(66, 102, 170, 0.25);
}

.feature-card:nth-child(4):hover {
    box-shadow: 0 15px 35px rgba(225, 90, 62, 0.18),
                0 0 0 2px rgba(225, 90, 62, 0.12);
    border-color: rgba(225, 90, 62, 0.25);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #5276BA 0%, #6B8FD4 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(82, 118, 186, 0.2);
}

.feature-card:nth-child(1) .feature-icon-wrapper {
    background: linear-gradient(135deg, #5276BA 0%, #6B8FD4 100%);
    box-shadow: 0 4px 15px rgba(82, 118, 186, 0.2);
}

.feature-card:nth-child(2) .feature-icon-wrapper {
    background: linear-gradient(135deg, #F16A4E 0%, #FF8A6B 100%);
    box-shadow: 0 4px 15px rgba(241, 106, 78, 0.2);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
    background: linear-gradient(135deg, #4266AA 0%, #5276BA 100%);
    box-shadow: 0 4px 15px rgba(66, 102, 170, 0.2);
}

.feature-card:nth-child(4) .feature-icon-wrapper {
    background: linear-gradient(135deg, #E15A3E 0%, #F16A4E 100%);
    box-shadow: 0 4px 15px rgba(225, 90, 62, 0.2);
}

.feature-card:hover .feature-icon-wrapper {
    transform: translateY(-6px) rotateY(10deg) scale(1.05);
}

.feature-card:nth-child(1):hover .feature-icon-wrapper {
    box-shadow: 0 10px 25px rgba(82, 118, 186, 0.3);
}

.feature-card:nth-child(2):hover .feature-icon-wrapper {
    box-shadow: 0 10px 25px rgba(241, 106, 78, 0.3);
}

.feature-card:nth-child(3):hover .feature-icon-wrapper {
    box-shadow: 0 10px 25px rgba(66, 102, 170, 0.3);
}

.feature-card:nth-child(4):hover .feature-icon-wrapper {
    box-shadow: 0 10px 25px rgba(225, 90, 62, 0.3);
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper::after {
    opacity: 1;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #5276BA;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.feature-card:nth-child(1) h3 {
    color: #5276BA;
}

.feature-card:nth-child(2) h3 {
    color: #F16A4E;
}

.feature-card:nth-child(3) h3 {
    color: #5276BA;
}

.feature-card:nth-child(4) h3 {
    color: #F16A4E;
}

.feature-card:hover h3 {
    color: #4266AA;
}

.feature-card:nth-child(2):hover h3,
.feature-card:nth-child(4):hover h3 {
    color: #E15A3E;
}

.feature-card p {
    color: #5276BA;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.feature-card:nth-child(2) p,
.feature-card:nth-child(4) p {
    color: #5276BA;
}

.feature-card:hover p {
    opacity: 1;
}

/* Products */
.products-preview {
    background: white;
    position: relative;
    z-index: 1;
}

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

.products-grid.modern {
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.modern-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(82, 118, 186, 0.12);
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.modern-card:hover {
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(82, 118, 186, 0.22);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.product-image {
    position: relative;
    width: 100%;
    height: 230px;
    background: #f3f5fb;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: rgba(82, 118, 186, 0.9);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.product-pill.outdoor {
    background: rgba(241, 106, 78, 0.95);
}

.modern-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.modern-card .product-info {
    padding: 18px 18px 16px;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #5276BA;
}

.product-info p {
    color: #5276BA;
    font-size: 14px;
    margin-bottom: 15px;
}

.modern-card .product-info h3 {
    color: #0f1b35;
}

.modern-card .product-info p {
    color: #4a5470;
}

.product-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.text-link {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.text-link:hover {
    text-decoration: underline;
}

/* Products page modern layout */
.products-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(82, 118, 186, 0.2), rgba(241, 106, 78, 0.18));
    padding: 140px 20px 80px;
    overflow: hidden;
}

.products-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(82,118,186,0.16), transparent 45%),
                radial-gradient(ellipse at 80% 10%, rgba(241,106,78,0.12), transparent 40%);
    pointer-events: none;
}

.products-hero-content {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.products-kicker {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px;
}

.products-hero h1 {
    margin: 0 0 12px;
    font-size: 44px;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.products-subtitle {
    margin: 0;
    color: #2f3b56;
    font-size: 17px;
    line-height: 1.6;
}

.products-hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.products-meta-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(82, 118, 186, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.products-meta-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.6;
}

.products-meta-card strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 15px;
}

.products-meta-card span {
    color: #2f3b56;
    font-size: 14px;
    line-height: 1.5;
}

.products-section {
    padding: 70px 20px 110px;
    background: #f8f9fb;
}

.products-empty {
    text-align: center;
    padding: 80px 20px;
    color: #5a6473;
    font-size: 18px;
}

@media (max-width: 968px) {
    .products-hero-content {
        grid-template-columns: 1fr;
    }
    .products-hero {
        padding: 110px 20px 60px;
    }
}

@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 32px;
    }
}

/* Ensure products page sits below header */
.page-products .site-header {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-products main {
    padding-top: 140px;
}

@media (max-width: 768px) {
    .page-products main {
        padding-top: 120px;
    }
}

/* CTA Section - Complete styling with 3D effects */
section.cta-section,
.cta-section,
main section.cta-section,
body section.cta-section,
html body main section.cta-section {
    background: #F16A4E !important;
    background-image: linear-gradient(135deg, #F16A4E 0%, #E15A3E 100%) !important;
    background-color: #F16A4E !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    color: white !important;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 100px 20px !important;
    overflow: hidden;
    border: none !important;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 20px 60px rgba(241, 106, 78, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 -10px 40px rgba(0, 0, 0, 0.2) inset;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: ctaShine 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes ctaShine {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0.6;
    }
}

.cta-section .container {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #5276BA;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(82, 118, 186, 0.4),
                 0 2px 10px rgba(82, 118, 186, 0.3),
                 0 0 30px rgba(82, 118, 186, 0.2),
                 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
    animation: ctaTitleFloat 3s ease-in-out infinite;
}

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

.cta-section h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(82, 118, 186, 0.8), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(82, 118, 186, 0.6);
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25),
                 0 1px 5px rgba(0, 0, 0, 0.15);
    transform: translateZ(15px);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.btn-cta {
    background: linear-gradient(135deg, #5276BA 0%, #4266AA 100%) !important;
    color: white !important;
    padding: 20px 50px !important;
    border-radius: 50px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 10px 30px rgba(82, 118, 186, 0.5),
                0 5px 15px rgba(82, 118, 186, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 2px 0 rgba(255, 255, 255, 0.2) inset !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transform: translateZ(25px);
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-cta::after {
    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 ease, height 0.6s ease;
    z-index: 0;
}

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

.btn-cta:hover::after {
    width: 300px;
    height: 300px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #4266AA 0%, #5276BA 100%);
    transform: translateY(-8px) translateZ(30px) scale(1.05);
    box-shadow: 0 20px 50px rgba(82, 118, 186, 0.6),
                0 10px 25px rgba(82, 118, 186, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                0 3px 0 rgba(255, 255, 255, 0.3) inset,
                0 0 40px rgba(82, 118, 186, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-cta:active {
    transform: translateY(-4px) translateZ(25px) scale(1.02);
    box-shadow: 0 15px 40px rgba(82, 118, 186, 0.5),
                0 5px 15px rgba(82, 118, 186, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn-cta span {
    position: relative;
    z-index: 2;
    display: inline-block;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #5276BA 0%, #4266AA 100%);
    color: white;
    padding: 50px 20px 25px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 300px;
}

.footer-connect {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    max-height: 60px;
    width: auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 2px white) drop-shadow(0 0 2px white) drop-shadow(0 0 2px white);
    -webkit-filter: drop-shadow(0 0 2px white) drop-shadow(0 0 2px white) drop-shadow(0 0 2px white);
}

.footer-logo-image:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 3px white) drop-shadow(0 0 3px white) drop-shadow(0 0 3px white) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(0 0 3px white) drop-shadow(0 0 3px white) drop-shadow(0 0 3px white) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-brand-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #F16A4E;
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-contact-item {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 14px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item strong {
    color: white;
    display: inline-block;
    margin-right: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-item br {
    display: none;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline;
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: #F16A4E;
    text-decoration: none;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #F16A4E;
}

.footer-section a:hover {
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-section a:hover::before {
    opacity: 1;
    left: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-links a::before {
    display: none;
}

.social-links a:hover {
    background: #F16A4E;
    border-color: #F16A4E;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(241, 106, 78, 0.4);
}

.social-links a.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-links a.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.social-links a.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
    z-index: 0;
}

/* Header inside slider - positioned absolutely to overlay */
.hero-slider .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.slide.active .slide-image {
    transform: scale(1);
}

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

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    pointer-events: none;
}

.slide-content * {
    pointer-events: auto;
}

.slide-content .container {
    width: 100%;
}

.slide-center {
    text-align: center;
    justify-content: center;
}

.slide-center .container {
    margin-left: auto;
    margin-right: auto;
}

.slide-left {
    text-align: left;
    justify-content: flex-start;
}

.slide-left .container {
    margin-left: 0;
    margin-right: auto;
}

.slide-right {
    text-align: right;
    justify-content: flex-end;
}

.slide-right .container {
    margin-left: auto;
    margin-right: 0;
}

.slide-title {
    font-size: 64px;
    font-weight: 800;
    color: #5276BA;
    margin-bottom: 24px;
    text-shadow: none;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-subtitle {
    font-size: 24px;
    color: #F16A4E;
    margin-bottom: 40px;
    text-shadow: none;
    opacity: 1;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide-btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    font-weight: 300;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slider-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Promotions Section */
.promotions-section {
    padding: 40px 20px;
    background: #fff;
    position: relative;
    z-index: 1;
}

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

.promotion-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.promotion-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.promotion-content {
    padding: 25px;
    position: relative;
}

.promotion-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.promotion-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #5276BA;
}

.promotion-content p {
    color: #5276BA;
    margin-bottom: 15px;
    line-height: 1.6;
}

.promotion-code {
    background: var(--bg-light);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #5276BA;
}

.promotion-code strong {
    color: #F16A4E;
    font-size: 16px;
}

/* Home Sections */
.home-section {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.section-content-wrapper {
    display: grid;
    gap: 50px;
    align-items: center;
}

.image-left {
    grid-template-columns: 1fr 1fr;
}

.image-right {
    grid-template-columns: 1fr 1fr;
}

.image-left .section-image {
    order: 1;
}

.image-left .section-text {
    order: 2;
}

.image-right .section-image {
    order: 2;
}

.image-right .section-text {
    order: 1;
}

.section-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.section-image:hover img {
    transform: scale(1.05);
}

.section-text .section-title {
    text-align: left;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #5276BA;
}

.section-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 1;
    font-weight: 500;
    color: #F16A4E;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #5276BA;
}

/* Product Image */
.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* Modern Enhancements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 28px;
    }
    
    .header-content {
        padding: 20px 0;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .logo-image {
        max-height: 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px 12px;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .cta-section,
    section.cta-section {
        padding: 70px 20px !important;
        background: #F16A4E !important;
        background-image: linear-gradient(135deg, #F16A4E 0%, #E15A3E 100%) !important;
        background-color: #F16A4E !important;
    }
    
    .cta-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }
    
    .cta-section p {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .btn-cta {
        padding: 18px 40px;
        font-size: 17px;
        letter-spacing: 0.8px;
    }
    
    .hero-slider {
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }
    
    .slider-container,
    .slider-wrapper {
        height: 100vh;
        min-height: 100vh;
    }
    
    
    .slide-content {
        padding: 100px 20px 60px;
    }
    
    .slide-title {
        font-size: 42px;
        letter-spacing: -0.5px;
    }
    
    .slide-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .site-header {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .section-image {
        order: 1 !important;
    }
    
    .section-text {
        order: 2 !important;
    }
    
    .section-text .section-title {
        text-align: center;
        font-size: 32px;
    }
    
    .home-section {
        padding: 50px 20px;
    }
    
    .site-footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo-image {
        max-height: 50px;
        padding: 10px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .social-links a {
        flex: 0 0 auto;
    }
}

/* ============================================
   CONTACT PAGE - MODERN & STYLISH
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e25a32 50%, #cc4e2b 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 12% 25%, rgba(255, 255, 255, 0.18), transparent 45%),
                radial-gradient(ellipse at 85% 30%, rgba(255, 255, 255, 0.12), transparent 50%);
    opacity: 0.9;
    pointer-events: none;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e9eefc;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.contact-hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 20px;
    background: #f8f9fa;
    min-height: 60vh;
}

.contact-extra {
    margin-top: 60px;
}

.contact-extra-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-extra-card {
    background: white;
    border-radius: 16px;
    padding: 22px 22px 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(82, 118, 186, 0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-extra-card h3 {
    margin: 0;
    font-size: 18px;
    color: #1f2a3d;
}

.contact-extra-card p {
    margin: 0;
    color: #5a6473;
    line-height: 1.5;
}

.contact-extra-card ul {
    margin: 6px 0 0;
    padding-left: 18px;
    color: #4d5766;
    line-height: 1.5;
    display: grid;
    gap: 6px;
}

.contact-extra-card li {
    position: relative;
}

.contact-extra-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(82, 118, 186, 0.16), rgba(241, 106, 78, 0.16));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(82, 118, 186, 0.12);
}

.contact-faq .faq-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-list li span {
    display: block;
    font-weight: 700;
    color: #25324a;
}

.faq-list li p {
    margin: 4px 0 0;
    color: #5a6473;
    line-height: 1.5;
}

.contact-highlights {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.contact-highlight-card {
    display: flex;
    gap: 12px;
    padding: 16px 18px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(82, 118, 186, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(82, 118, 186, 0.15), rgba(241, 106, 78, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.highlight-icon svg {
    color: var(--primary-color);
}

.highlight-text h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.highlight-text p {
    margin: 0;
    color: #5a6473;
    font-size: 14px;
    line-height: 1.5;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Side */
.contact-info-side {
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(82, 118, 186, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-info-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-info-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #4d5766;
    font-size: 14px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.contact-method:hover {
    background: white;
    border-color: rgba(82, 118, 186, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(82, 118, 186, 0.12);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.email-icon {
    background: linear-gradient(135deg, #5276BA 0%, #4266AA 100%);
    box-shadow: 0 4px 15px rgba(82, 118, 186, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #F16A4E 0%, #E15A3E 100%);
    box-shadow: 0 4px 15px rgba(241, 106, 78, 0.3);
}

.location-icon {
    background: linear-gradient(135deg, #5276BA 0%, #6B8FD4 100%);
    box-shadow: 0 4px 15px rgba(82, 118, 186, 0.3);
}

.contact-method:hover .contact-method-icon {
    transform: rotateY(10deg) scale(1.1);
}

.contact-method-content h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method-content a,
.contact-method-content span {
    display: block;
    color: #333;
    font-size: 17px;
    line-height: 1.5;
    text-decoration: none;
    font-weight: 500;
}

.contact-method-content a:hover {
    color: #5276BA;
}

.contact-method-hint {
    margin: 6px 0 0;
    color: #6b7380;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Form Side */
.contact-form-side {
    position: relative;
}

.contact-form-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(82, 118, 186, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-form-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
    box-sizing: border-box;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
    opacity: 1;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(82, 118, 186, 0.1),
                0 4px 15px rgba(82, 118, 186, 0.1);
    transform: translateY(-2px);
}

.form-field textarea {
    resize: vertical;
    min-height: 160px;
    font-family: inherit;
    line-height: 1.6;
}

.contact-submit-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4266AA 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(82, 118, 186, 0.4),
                0 4px 15px rgba(82, 118, 186, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(82, 118, 186, 0.5),
                0 6px 20px rgba(82, 118, 186, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Contact Alerts */
.contact-alert {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
}

.contact-alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.contact-alert svg {
    flex-shrink: 0;
}

.contact-form-note {
    margin: 0 0 6px;
    color: #59606f;
    font-size: 14px;
    line-height: 1.5;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
}

/* Contact page layout offset to avoid overlap with header */
.page-contact .site-header {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-contact main {
    padding-top: 140px;
}

.page-contact .contact-hero {
    padding-top: 170px;
}

@media (max-width: 768px) {
    .page-contact main {
        padding-top: 120px;
    }
    .page-contact .contact-hero {
        padding-top: 150px;
    }
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        position: static;
    }
    
    .contact-hero {
        padding: 100px 20px 60px;
    }
    
    .contact-hero-title {
        font-size: 42px;
    }
    
    .contact-main {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 20px 50px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-subtitle {
        font-size: 18px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 28px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .contact-method-icon {
        width: 48px;
        height: 48px;
    }
    
    .form-field input[type="text"],
    .form-field input[type="email"],
    .form-field textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .contact-submit-btn {
        padding: 16px 28px;
        font-size: 17px;
    }
}

/* ============================================
   ABOUT PAGE - MODERN & CREATIVE
   ============================================ */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 20px 80px;
    background: #f8f9fb;
    color: #1f2a3d;
}

.about-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    filter: saturate(1);
}

.about-hero::after {
    display: none;
}

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

.about-hero-content {
    max-width: 720px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f3f5ff;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}

.about-hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -1.5px;
}

.about-title-accent {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 14px;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.92;
    margin: 0 0 24px;
}

.page-about .site-header {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-about main {
    padding-top: 140px;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px 70px;
    }
    .page-about main {
        padding-top: 120px;
    }
}

.about-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-main {
    padding: 80px 20px;
    background: #f8f9fb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    margin-bottom: 40px;
    align-items: stretch;
}

.about-story h2 {
    font-size: 30px;
    margin: 0 0 12px;
    color: #1f2a3d;
}

.about-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #4c5464;
    margin: 0 0 18px;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.about-highlights li {
    padding: 12px 14px;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(82, 118, 186, 0.12);
    color: #2f3544;
    position: relative;
}

.about-highlights li::before {
    content: '•';
    color: var(--secondary-color);
    margin-right: 8px;
    font-weight: 900;
}

.about-card {
    background: linear-gradient(135deg, rgba(82, 118, 186, 0.08), rgba(241, 106, 78, 0.08));
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(82, 118, 186, 0.14);
}

.about-card-inner {
    padding: 26px 24px;
}

.about-card h3 {
    margin: 0 0 10px;
    color: #1f2a3d;
}

.about-card p {
    color: #4c5464;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.about-stat {
    padding: 12px 14px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(82, 118, 186, 0.12);
}

.about-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1f2a3d;
}

.about-stat-label {
    color: #5a6473;
    font-size: 14px;
}

.about-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 20px 0 32px;
}

.about-panel {
    background: white;
    border-radius: 16px;
    padding: 20px 20px 18px;
    border: 1px solid rgba(82, 118, 186, 0.12);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.about-panel h3 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.about-panel p {
    margin: 0;
    color: #4c5464;
    line-height: 1.6;
}

.about-gallery {
    margin: 20px 0 40px;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.about-gallery-item {
    position: relative;
    padding-top: 70%;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4), 0 10px 25px rgba(0,0,0,0.08);
}

.about-gallery-caption {
    margin-top: 14px;
}

.about-gallery-caption h4 {
    margin: 0 0 6px;
    color: #1f2a3d;
}

.about-gallery-caption p {
    margin: 0;
    color: #556070;
    line-height: 1.6;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2f4174 100%);
    border-radius: 18px;
    padding: 24px 28px;
    color: white;
    box-shadow: 0 12px 35px rgba(82, 118, 186, 0.35);
}

.about-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.about-cta h3 {
    margin: 0 0 6px;
}

.about-cta p {
    margin: 0;
    opacity: 0.9;
}

.about-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive About */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 42px;
    }
    
    .about-hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 90px 20px 60px;
    }
    
    .about-hero h1 {
        font-size: 34px;
    }
    
    .about-main {
        padding: 60px 18px;
    }
    
    .about-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

