:root {
    /* Bright Theme Colors */
    --primary-bg: #ffffff;
    --secondary-bg: #f8fafc;
    --accent-bg: #e0f2fe;
    --header-bg: #ffffff;
    --hero-bg: #3E0703;
    --footer-bg: 3E0703;
    
    --primary-color: #3E0703;
    --secondary-color: #ffce05;
    --accent-color: #660B05;
    
    --text-dark: #660B05;
    --text-medium: #414141;
    --text-light: #ffce05;
    --text-white: #ffffff;
    
    --border-color: #e2e8f0;
    --shadow-color: rgba(99, 102, 241, 0.1);
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: var(--primary-bg);
}
* {
    box-sizing: border-box;
}
img {
    height: 100%;
    width: 100%;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1220px;
    position: relative;
}
section {
    padding: 80px 0;
}
.bg-white {
  background: #fff !important;
}
.bg-white h2 {
  color: var(--text-dark);
}
section {
  position: relative;
}
/* ---------------- HEADER ---------------- */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    color: var(--text-dark);
    background: var(--header-bg);
    box-shadow: 0 2px 20px var(--shadow-color);
    border-bottom: 1px solid var(--border-color);
}

/* Header "View Catalogue" button */
.header-catalogue-btn {
    margin-left: 20px;
    padding: 10px 22px;
    background-color: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.header-catalogue-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px var(--shadow-color);
}

@media (max-width: 1024px) {
    .header-catalogue-btn {
        display: none;
    }
}

.header .logo {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1.1;
    max-width: 120px;
}
.header .logo span {
    font-size: 10px;
    letter-spacing: 3px;
}

 .header .nav {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.header .dropdown {
    position: relative;
    cursor: pointer;
}

.header .dropdown-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.header .dropdown:hover .dropdown-link {
    color: var(--primary-color);
}

.header .dropdown-link .caret {
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    vertical-align: middle;
}

.header .dropdown:hover .dropdown-link .caret {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.header .dropdown .menu {
    position: absolute;
    top: 18px;
    left: 0;
    background: white;
    color: var(--text-dark);
    padding: 12px 0;
    width: 180px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px) scaleY(0);
    transform-origin: top;
    transition: opacity 0.3s ease, transform 0.3s ease;
    perspective: 1000px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.header .dropdown:hover .menu {
    display: flex;
    opacity: 1;
    transform: translateY(0) scaleY(1);
}

.header .dropdown .menu a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    margin: 0;
    font-size: 13px;
    display: block;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
                opacity 0.5s ease,
                background-color 0.3s ease, 
                color 0.3s ease, 
                padding-left 0.3s ease;
}

.header .dropdown:hover .menu a {
    transform: translateX(0);
    opacity: 1;
}

.header .dropdown .menu a:nth-child(1) {
    transition-delay: 0.05s;
}

.header .dropdown .menu a:nth-child(2) {
    transition-delay: 0.1s;
}

.header .dropdown .menu a:nth-child(3) {
    transition-delay: 0.15s;
}

.header .dropdown .menu a:nth-child(4) {
    transition-delay: 0.2s;
}

.header .dropdown .menu a:nth-child(5) {
    transition-delay: 0.25s;
}

.header .dropdown .menu a:hover {
    background-color: var(--accent-bg);
    color: var(--primary-color);
    padding-left: 25px;
    transform: translateX(5px) scale(1.02);
}

.header .icons .icon {
    margin-left: 20px;
    cursor: pointer;
    font-size: 18px;
}

/* ---------------- HAMBURGER MENU ---------------- */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: var(--primary-color);
}

.hamburger:hover .hamburger-line {
    background: white;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation - Active State */
.hamburger.active {
    background: var(--primary-color);
}

.hamburger.active .hamburger-line {
    background: white;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ---------------- RESPONSIVE HEADER ---------------- */

@media (max-width: 1024px) {
    .header {
        padding: 15px 30px;
    }

    .header .social {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header .nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .header .nav.active {
        right: 0;
        position: absolute;
    }

    .header .dropdown {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .header .dropdown-link {
        display: block;
        padding: 18px 0;
        font-size: 15px;
        font-weight: 600;
    }

    .header .dropdown .menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: var(--secondary-bg);
        padding: 0;
        display: none;
        opacity: 1;
        transform: none;
        border: none;
        margin-bottom: 10px;
    }

    .header .dropdown.active .menu {
        display: flex;
    }

    .header .dropdown .menu a {
        padding: 15px 20px;
        transform: none;
        opacity: 1;
        border-bottom: 1px solid var(--border-color);
    }

    .header .dropdown .menu a:last-child {
        border-bottom: none;
    }

    .header .dropdown .menu a:hover {
        background-color: var(--accent-bg);
        padding-left: 25px;
        transform: none;
    }

    /* Mobile dropdown toggle */
    .header .dropdown-link .caret {
        float: right;
        transition: transform 0.3s ease;
    }

    .header .dropdown.active .dropdown-link .caret {
        transform: rotate(180deg);
    }

    /* Close button area at top of mobile nav */
    .header .nav::before {
        content: 'Menu';
        position: absolute;
        top: 30px;
        left: 30px;
        font-family: "Playfair Display", serif;
        font-size: 24px;
        font-weight: 700;
        color: var(--text-dark);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }

    .header .logo {
        max-width: 100px;
    }

    .header .nav {
        width: 280px;
        right: -280px;
        padding: 90px 20px 20px;
    }

    .header .nav::before {
        top: 25px;
        left: 20px;
        font-size: 22px;
    }

    .header .dropdown-link {
        padding: 15px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .header .logo {
        max-width: 90px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
    }

    .header .nav {
        width: 100%;
        right: -100%;
    }
}

/* Prevent body scroll when mobile menu is open */
body.nav-open {
    overflow: hidden;
}

/* ---------------- HERO SECTION ---------------- */

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    transform: rotate(180deg);
}

.hero .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 20s ease-out;
}




.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile-specific hero background */
@media (max-width: 768px) {
    .hero {
        background-image: url("../images/bg-responsive.png");
        background-size: cover;
        background-position: center;
    }

    .hero .bg-img {
        display: none;
    }
}

/* LEFT EMAIL */
.left-email {
    position: absolute;
    top: 45%;
    left: 40px;
    transform: rotate(-90deg);
    transform-origin: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.left-email:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 206, 5, 0.5);
}

/* SOCIAL ICONS */
.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    margin: 0;
}

.social-icons li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons li a {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.5);  
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    transition: 0.3s ease;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: var(--accent-color);
}


.social-icons li a:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
}


.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Hero Left Sidebar */
.hero-left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.hero-email-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #f8fafc;
    backdrop-filter: blur(15px);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: #414141;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-email-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 206, 5, 0.2);
}

.hero-email-link i {
    color: #414141;
    font-size: 16px;
    transition: transform 0.3s ease;
    }

.hero-email-link:hover i {
    transform: scale(1.2);
}

.hero-social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #414141;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 206, 5, 0.4);
}

/* Hero Right Sidebar */
.hero-right-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.script-title {
    font-family: "Pacifico", cursive;
    font-size: 42px;
    margin: 0 0 10px 0;
    color: var(--secondary-color);
    text-shadow: 0 2px 15px rgba(255, 206, 5, 0.4), 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out;
}

.main-title {
    font-family: "Playfair Display", serif;
    font-size: 120px;
    font-weight: 700;
    margin: 0 0 30px 0;
    letter-spacing: 8px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 206, 5, 0.3);
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 206, 5, 0.6);
}

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

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

.sub {
    font-size: 22px;
    margin-bottom: 10px;
}

.small {
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 30px;
}

.btn-orange {
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 3px solid var(--secondary-color);
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 206, 5, 0.4), 0 0 30px rgba(255, 206, 5, 0.2);
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

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

.btn-orange:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 206, 5, 0.5), 0 0 50px rgba(255, 206, 5, 0.3);
    border-color: var(--secondary-color);
}

/* ---------------- SCROLL INDICATOR ---------------- */

.scroll-indicator {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    font-size: 14px;
    z-index: 3;
}

.arrows {
    margin-top: 15px;
}

.up, .down {
    width: 2px;
    height: 15px;
    background: white;
    margin: 7px auto;
}

/* Hero Main Content Styles */
    .hero-main-content {
    text-align: left;
    color: white;
    z-index: 3;
    position: relative;
    max-width: 750px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 206, 5, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 206, 5, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 206, 5, 0.5);
}

.hero-subtitle {
    font-family: "Pacifico", cursive;
    font-size: 42px;
    margin: 0 0 15px 0;
    color: var(--primary-color);
        font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 120px;
    font-weight: 700;
    margin: 0 0 25px 0;
    letter-spacing: 8px;
    line-height: 1.1;
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
    }

.hero-title .title-main {
    display: block;
    color: var(--primary-color);
    position: relative;
    text-shadow: 0 0 20px rgba(255, 206, 5, 0.6), 0 4px 15px rgba(0, 0, 0, 0.4);
    }

.hero-title .title-accent {
    display: block;
    font-size: 0.55em;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: -15px;
    letter-spacing: 6px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 206, 5, 0.6);
    border-radius: 2px;
    animation: expandLine 1s ease-out 1.2s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
    width: 120px;
        opacity: 1;
    }
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    margin: 30px 0 0 0;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 400;
    color: var(--text-medium);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary-hero {
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 3px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 206, 5, 0.4), 0 0 30px rgba(255, 206, 5, 0.2);
    position: relative;
    overflow: hidden;  border: 1px solid var(--primary-color);
    }

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

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

.btn-primary-hero:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 12px 40px rgba(255, 206, 5, 0.5), 0 0 50px rgba(255, 206, 5, 0.3);
}

.btn-primary-hero i {
    transition: transform 0.3s ease;
}



/* Hero Text Responsive Styles */
@media (max-width: 1400px) {
    .hero-container {
        gap: 60px;
        padding: 80px 0;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: auto 1fr;
        gap: 50px;
    }

    .hero-right-sidebar {
        display: none;
    }

    .hero-title {
        font-size: 100px;
    }

    .hero-subtitle {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 90vh;
    }

    .hero .container {
        padding: 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 60px 0;
    }

    .hero-left-sidebar {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .hero-social-links {
        flex-direction: row;
}

    .hero-main-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 85px;
        letter-spacing: 6px;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100vh;
        align-items: baseline;
        justify-content: flex-start;
    }
    
    .hero .container {
        padding: 0 20px;
    }

    .hero-container {
        padding:  0;
        gap: 30px;
    }

    .hero-left-sidebar {
        flex-direction: column;
        align-items: center;
        display: none;
    }
    
    .hero-title {
        font-size: 64px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }
    
    .hero-title .title-accent {
        font-size: 0.5em;
        letter-spacing: 4px;
        margin-top: -10px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
        margin: 30px auto 35px;
        max-width: 100%;
        padding: 0;
        max-width: 500px;

    }

    .hero-badge {
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .hero-badge span {
        font-size: 11px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 30px auto 0;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .hero-title .title-accent {
        font-size: 0.45em;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 14px 30px;
        font-size: 13px;
        letter-spacing: 2px;
    }
    }

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    }

/* Sections */


/* ---------------- SERVICES BANNER SECTION ---------------- */

.services-banner {
    background-color: var(--secondary-color);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    transition: transform 0.3s ease;
    }

.service-item:hover {
    transform: translateY(-3px);
}

.service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background-color: transparent;
    }
    
.service-icon i {
    font-size: 24px;
    color: var(--primary-color);
    }
    
.service-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
    opacity: 0.9;
}

.service-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(62, 7, 3, 0.2);
}

/* Services Banner Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .service-divider {
        display: none;
    }

    .service-item:nth-child(2),
    .service-item:nth-child(4),
    .service-item:nth-child(6) {
        border-left: 1px solid rgba(62, 7, 3, 0.1);
    }

    .service-item:nth-child(3),
    .service-item:nth-child(4) {
        border-top: 1px solid rgba(62, 7, 3, 0.1);
    }
}

@media (max-width: 768px) {
    .services-banner {
        padding: 30px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 20px;
        justify-content: left;
        text-align: left;
    }

    .service-item:nth-child(2),
    .service-item:nth-child(3),
    .service-item:nth-child(4) {
        border-left: none;
        border-top: 1px solid rgba(62, 7, 3, 0.1);
    }

    .service-content {
    align-items: left
    ;
}
}

@media (max-width: 480px) {
    .service-item {
        flex-direction: column;
        gap: 15px;
    }

    .service-title {
        font-size: 14px;
        text-align: center;
    }

    .service-subtitle {
        font-size: 12px;
        text-align: center;
    }
}

  .about-section {
    background-color: var(--secondary-bg);
  }
  .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
  }
  
  .about-section .text-content .sub-heading {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
  }
  
  .about-section .text-content .main-heading {
    font-size: 48px;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--text-dark);
    font-weight: bold;
  }
  
  .about-section .text-content .description {
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 450px;
  }
  
.about-section .text-content .btn {
    background: var(--primary-color);
    padding: 12px 28px;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

  .about-section .text-content .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
  }

  .about-section .image-block {
    position: relative;
  }
  

  .about-section .image-block .photo-frame {
    width: 520px;
    background: #fff;
    padding: 15px;
    /* transform: rotate(-5deg); */
    box-shadow: 0 20px 40px var(--shadow-color);
    position: relative;
    border-radius: 16px;
  }
  
  .about-section .image-block .photo-frame img {
    width: 100%;
    border-radius: 12px;
    display: block;
  }
  
  /* TAPE */
  .about-section .image-block .photo-frame::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 40%;
    width: 180px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    transform: rotate(-10deg);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    border-radius: 8px;
  }
  

  .about-section .image-block .deco {
    position: absolute;
    width: 110px;
  }
  
  .about-section .image-block .feather {
    top: -30px;
    right: -40px;
  }
  
  .about-section .image-block .watch {
    bottom: -40px;
    right: -10px;
    width: 130px;
  }
  

  @media(max-width: 900px) {
    .about-section .container {
      flex-direction: column;
      text-align: center;
    }
    .about-section .image-block .photo-frame {
      width: 100%;
    }
  
    .about-section .text-content .description {
      margin: 10px auto;
      max-width: 100%;
    }
  
    .about-section .image-block {
      margin-top: 40px;
    }
  }

/* ---------------- PORTFOLIO SECTION ---------------- */

.portfolio-section {
  background-color: var(--secondary-bg);
  padding: 100px 0;
}

.portfolio-section .portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-section .portfolio-subheading {
  display: block;
  color: var(--primary-color);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.portfolio-section .portfolio-heading {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--text-dark);
  margin: 0 0 25px 0;
  font-weight: 700;
}

.portfolio-section .portfolio-description {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}

.portfolio-section .portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-section .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.portfolio-section .portfolio-item .title {
    color: #fff;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 100%;
}
.portfolio-section .portfolio-item-large {
  grid-row: 1 / 3;
}

.portfolio-section .portfolio-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: end;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.portfolio-section .portfolio-item-large .portfolio-image {
  min-height: 620px;
}

.portfolio-section .portfolio-button-wrapper {
  text-align: center;
}

.portfolio-section .btn-view-all {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 40px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.portfolio-section .btn-view-all:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

@media(max-width: 900px) {
    .portfolio-section .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .portfolio-section .portfolio-item-large {
    grid-row: 1;
  }
  
  .portfolio-section .portfolio-heading {
    font-size: 36px;
  }
  .portfolio-section .portfolio-item-large .portfolio-image {
    min-height: auto;
  }
}

/* ---------------- WHY CHOOSE WOOLF SECTION ---------------- */

.why-choose-section {
    background-color: var(--primary-bg);
    padding: 100px 0;
  position: relative;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
    width: 100%;
    height: 8px;
}

.why-choose-header {
  text-align: center;
    margin-bottom: 70px;
}

.why-choose-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
    color: var(--primary-color);
    margin: 0;
  font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.why-choose-grid {
  display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  max-width: 1400px;
    margin: 0 auto;
}

.why-choose-item {
    text-align: center;
    padding: 40px 20px;
  background-color: white;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-choose-item::before {
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    height: 5px;
    background: var(--secondary-color);
    transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--secondary-color);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
    background: var(--secondary-color);
    border: 3px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.why-choose-icon i {
    font-size: 36px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.why-choose-item:hover .why-choose-icon i {
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.why-choose-item-title {
  font-family: 'Montserrat', sans-serif;
    font-size: 18px;
  font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
  text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Responsive */
@media (max-width: 1200px) {
    .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
    .why-choose-section {
    padding: 80px 0;
  }

    .why-choose-title {
        font-size: 42px;
  }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
  }

    .why-choose-item {
        padding: 30px 15px;
  }

    .why-choose-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
  }

    .why-choose-icon i {
        font-size: 30px;
  }

    .why-choose-item-title {
  font-size: 16px;
  }
}

@media (max-width: 480px) {
    .why-choose-title {
        font-size: 36px;
  }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
  }

    .why-choose-item {
        padding: 25px 20px;
  }
}

/* ---------------- OUR MISSION SECTION ---------------- */

.our-mission-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mission-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner-img.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 7, 3, 0.85) 0%, rgba(102, 11, 5, 0.75) 100%);
    z-index: 2;
}

.mission-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mission-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.mission-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 40px 0 0 0;
    font-weight: 400;
}

/* Our Mission Responsive */
@media (max-width: 1024px) {
    .mission-background::before {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .our-mission-section {
        padding: 100px 0;
        min-height: 400px;
    }

    .mission-content {
        padding: 50px 30px;
    }

    .mission-title {
        font-size: 42px;
    }

    .mission-text {
        font-size: 18px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .our-mission-section {
        padding: 80px 0;
        min-height: 350px;
    }

    .mission-content {
        padding: 40px 20px;
        border-width: 2px;
    }

    .mission-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .mission-title::after {
        width: 80px;
        height: 3px;
    }

    .mission-text {
        font-size: 16px;
        line-height: 1.7;
        margin-top: 25px;
  }
}

/* ---------------- CTA SECTION ---------------- */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    color: var(--text-white);
    margin: 0 0 25px 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.cta-btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.cta-btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 206, 5, 0.4);
}

.cta-btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 206, 5, 0.5);
}

.cta-btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 3px solid var(--text-white);
}

.cta-btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.cta-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 42px;
        letter-spacing: 1px;
    }

    .cta-description {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 14px 35px;
        letter-spacing: 1.5px;
    }

    .cta-note {
        font-size: 13px;
    }
}

/* ---------------- CONTACT PAGE SECTION ---------------- */

.contact-section {
  background-color: var(--secondary-bg);
  padding: 100px 0;
  min-height: calc(100vh - 200px);
}

.contact-header {
  text-align: center;
  margin-bottom: 70px;
}

.contact-subheading {
  display: block;
  color: var(--primary-color);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.contact-heading {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--text-dark);
  margin: 0 0 25px 0;
  font-weight: 700;
}

.contact-description {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px var(--shadow-color);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-color);
}

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

.btn-submit {
  padding: 15px 40px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  align-self: flex-start;
  margin-top: 10px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-submit:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px var(--shadow-color);
  height: fit-content;
}

.contact-info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--text-dark);
  margin: 0 0 15px 0;
  font-weight: 700;
}

.info-description {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 35px;
  font-family: 'Montserrat', sans-serif;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--accent-bg);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

.contact-social {
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.contact-social h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

/* Contact Page Responsive */
@media(max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 40px;
  }

  .contact-info-card {
    padding: 35px;
  }
}

@media(max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-heading {
    font-size: 36px;
  }

  .contact-form-wrapper,
  .contact-info-card {
    padding: 30px 20px;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .info-content {
    text-align: center;
  }
}

/* ---------------- PACKAGING HERO SECTION ---------------- */

.packaging-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); 
  color: white;
  position: relative;
  overflow: hidden;
}

.packaging-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.packaging-hero-content {
  text-align: center;
}

.packaging-hero-left {
  display: flex;
  flex-direction: column;
}

.packaging-subheading {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.packaging-hero-heading {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: white;
  margin: 0 0 30px 0;
  font-weight: 700;
  line-height: 1.2;
}

.packaging-hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 40px 0;
  font-family: 'Montserrat', sans-serif;
  max-width: 850px;
  margin: 0 auto;
}

.packaging-hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 33%;
  max-width: 33%;
  justify-content: center;
}

.hero-feature-item i {
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 35px;
  flex-shrink: 0;
}

.packaging-hero-right {
  position: relative;
}

.packaging-hero-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.packaging-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 1;
}

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

.packaging-hero-image:hover img {
  transform: scale(1.1);
}

.packaging-hero-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.packaging-hero-decoration .decoration-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.packaging-hero-decoration .decoration-diamond {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* ---------------- PACKAGING PAGE SECTION ---------------- */

.packaging-section {
  background-color: var(--secondary-bg);
  padding: 100px 0;
  color: var(--text-dark);
  min-height: calc(100vh - 200px);
}

/* Packaging Blocks */
.packaging-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.packaging-block-reverse {
  grid-template-columns: 1.3fr 1fr;
}

.packaging-block-reverse .packaging-image-wrapper {
  order: 2;
}

.packaging-block-reverse .packaging-content {
  order: 1;
}

.packaging-image-wrapper {
  position: relative;
}

.packaging-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px var(--shadow-color);
  max-height: 620px;
}

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

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

.packaging-content {
  padding: 20px 0;
}

.packaging-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--text-dark);
  margin: 0 0 25px 0;
  font-weight: 700;
  line-height: 1.3;
}

.packaging-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 30px 0;
}

.packaging-features {
  margin-top: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: feature-counter;
}

.features-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 2;
  color: var(--text-medium);
  padding-left: 35px;
  position: relative;
  margin-bottom: 10px;
  counter-increment: feature-counter;
}

.features-list li::before {
  content: counter(feature-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

.packaging-spec {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 25px;
  font-style: italic;
}

/* Packaging Hero Responsive */
@media(max-width: 1024px) {
  .packaging-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .packaging-hero-heading {
    font-size: 48px;
  }

  .packaging-hero-image {
    height: 400px;
  }

  .packaging-hero-description {
    max-width: 100%;
  }
}

@media(max-width: 768px) {
  .packaging-hero-section {
    padding: 80px 0 60px;
  }

  .packaging-hero-heading {
    font-size: 36px;
  }

  .packaging-hero-description {
    font-size: 15px;
  }

  .packaging-hero-image {
    height: 350px;
  }

  .hero-feature-item {
    font-size: 14px;
  }

  .hero-feature-item i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Packaging Responsive */
@media(max-width: 1024px) {
  .packaging-block,
  .packaging-block-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .packaging-block-reverse .packaging-image-wrapper,
  .packaging-block-reverse .packaging-content {
    order: unset;
  }

  .packaging-image {
    min-height: 350px;
  }

  .packaging-title {
    font-size: 28px;
  }
}

@media(max-width: 768px) {
  .packaging-section {
    padding: 60px 0;
  }

  .packaging-header {
    margin-bottom: 50px;
  }

  .packaging-heading {
    font-size: 36px;
  }

  .packaging-title {
    font-size: 24px;
  }

  .packaging-text,
  .features-list li {
    font-size: 14px;
  }

  .packaging-image {
    min-height: 300px;
  }

  .packaging-block {
    margin-bottom: 60px;
  }
}


/* ---------------- QUALITY ASSURANCE PAGE ---------------- */

.quality-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.quality-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.quality-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quality-subheading {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.quality-hero-heading {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: white;
  margin: 0 0 30px 0;
  font-weight: 700;
  line-height: 1.3;
}

.quality-hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 auto 40px;
  font-family: 'Montserrat', sans-serif;
  max-width: 850px;
}

.quality-hero-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.quality-hero-decoration .decoration-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.quality-hero-decoration .decoration-diamond {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Quality Standard Section */
.quality-standard-section {
  background-color: var(--secondary-bg);
  padding: 100px 0;
}

.quality-content-block {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.quality-icon-wrapper {
  flex-shrink: 0;
}

.quality-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 50px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.quality-text-content {
  flex: 1;
}

.quality-section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--text-dark);
  margin: 0 0 30px 0;
  font-weight: 700;
}

.quality-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 25px 0;
}

/* Precision Section */
.quality-precision-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 100px 0;
  color: white;
  position: relative;
}

.quality-precision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.quality-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.quality-main-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: white;
  margin: 0;
  font-weight: 700;
}

.quality-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-feature-card {
    background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.quality-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 35px;
  margin: 0 auto 25px;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.feature-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  font-weight: 700;
}

.feature-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
}

/* Success Section */
.quality-success-section {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-bg) 100%);
  padding: 100px 0;
  text-align: center;
}

.success-message {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 45px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.success-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--text-dark);
  margin: 0 0 25px 0;
  font-weight: 700;
}

.success-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
}

/* Quality Page Responsive */
@media(max-width: 1024px) {
  .quality-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quality-content-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .quality-icon {
    margin-bottom: 30px;
  }

  .quality-hero-heading {
    font-size: 42px;
  }
}

@media(max-width: 768px) {
  .quality-hero-section {
    padding: 80px 0 60px;
  }

  .quality-hero-heading {
    font-size: 36px;
  }

  .quality-hero-description {
    font-size: 15px;
  }

  .quality-standard-section,
  .quality-precision-section,
  .quality-success-section {
    padding: 60px 0;
  }

  .quality-section-title,
  .quality-main-title,
  .success-title {
    font-size: 32px;
  }

  .quality-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 35px;
  }
}

/* ---------------- SPECIALIZE PAGE ---------------- */

.specialize-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.specialize-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.specialize-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.specialize-subheading {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.specialize-hero-heading {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: white;
  margin: 0 0 30px 0;
  font-weight: 700;
  line-height: 1.3;
}

.specialize-hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 auto 40px;
  font-family: 'Montserrat', sans-serif;
  max-width: 850px;
}

.specialize-hero-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.specialize-hero-decoration .decoration-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.specialize-hero-decoration .decoration-diamond {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Specialize Products Section */
.specialize-products-section {
  background-color: var(--secondary-bg);
  padding: 100px 0;
}

.specialize-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.specialize-main-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
}

.product-category-block {
  background-color: white;
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.category-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  flex-shrink: 0;
}

.category-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
}

.category-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 35px 0;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.spec-item {
  background-color: var(--secondary-bg);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.spec-label {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.spec-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-medium);
}

.spec-details span {
  display: block;
}

.custom-products-block,
.markets-block {
  background-color: white;
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.custom-title,
.markets-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--text-dark);
  margin: 0 0 25px 0;
  font-weight: 700;
}

.custom-description,
.markets-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
}

.markets-description strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Balls Gallery Section */
.balls-gallery-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);  
  padding: 100px 0;
  color: white;   
  position: relative;
}

.balls-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.gallery-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: white;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.gallery-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #414141;
  margin: 0;
}

.balls-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.ball-gallery-item {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.ball-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.ball-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ball-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
}

.ball-gallery-item:hover .ball-image-wrapper img {
  transform: scale(1.1);
}

.ball-label {
  padding: 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

/* Specialize Page Responsive */
@media(max-width: 1024px) {
  .balls-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
  }

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

@media(max-width: 768px) {
  .specialize-hero-section {
    padding: 80px 0 60px;
  }

  .specialize-hero-heading {
    font-size: 36px;
  }

  .specialize-hero-description {
    font-size: 15px;
  }

  .specialize-products-section,
  .balls-gallery-section {
    padding: 60px 0;
  }

  .specialize-main-title,
  .category-title,
  .custom-title,
  .markets-title,
  .gallery-title {
    font-size: 28px;
  }

  .product-category-block,
  .custom-products-block,
  .markets-block {
    padding: 30px 20px;
  }

  .category-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .balls-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }

  .ball-image-wrapper {
    height: 200px;
  }

  .ball-label {
    font-size: 14px;
    padding: 15px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Contact Column */
.footer-contact-column {
  max-width: 100%;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', sans-serif;
}

@media screen and (max-width:768px) {
  .contact-text {
    text-align: left;
  }
  
}
/* ---------------- ABOUT US PAGE ---------------- */

.about-hero-section {
  background-color: var(--secondary-color);
  padding: 120px 0 80px;
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/banner-2.gif") no-repeat;
  background-size: cover;
  background-position: top;
  pointer-events: none;
  z-index: 1;
}

.about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-subheading {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.about-hero-heading {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: var(--primary-color);
  margin: 0 0 30px 0;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(62, 7, 3, 0.1);
}

.about-hero-description {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto 25px;
  font-family: 'Montserrat', sans-serif;
  max-width: 850px;
  font-weight: 400;
}

.about-hero-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.about-hero-decoration .decoration-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-hero-decoration .decoration-diamond {
  width: 14px;
  height: 14px;
  background-color: var(--primary-color);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(62, 7, 3, 0.3);
}

/* About Journey Section */
.about-journey-section {
  background-color: var(--secondary-bg);
  padding: 100px 0;
}

.about-content-block {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.about-icon-wrapper {
  flex-shrink: 0;
}

.about-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 50px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.about-text-content {
  flex: 1;
}

.about-section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--text-dark);
  margin: 0 0 30px 0;
  font-weight: 700;
}

.about-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 25px 0;
}

/* What We Do Section */
.about-what-we-do-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 100px 0;
  color: white;
  position: relative;
}

.about-what-we-do-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.about-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-main-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: white;
  margin: 0;
  font-weight: 700;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.about-feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 35px;
  margin: 0 auto 25px;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.about-feature-card .feature-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  font-weight: 700;
}

.about-feature-card .feature-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
}

/* Global Presence Section */
.about-global-section {
  padding: 100px 0;
}

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

.global-message {
  text-align: left;
}

.global-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 45px;
  margin: 0 0 30px 0;
  box-shadow: 0 4px 6px var(--accent-color);
  animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.global-map-wrapper {
  position: relative;
}

.global-map-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-map-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
}

.global-map-wrapper:hover .global-map-image img {
  transform: scale(1.05);
}

.global-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--text-dark);
  margin: 0 0 25px 0;
  font-weight: 700;
}

.global-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 20px 0;
}

.global-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* About Us Page Responsive */
@media(max-width: 1024px) {
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .about-icon {
    margin-bottom: 30px;
  }

  .about-hero-heading {
    font-size: 42px;
  }

  .global-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .global-message {
    text-align: center;
  }

  .global-icon {
    margin: 0 auto 30px;
  }

  .global-map-image {
    min-height: 350px;
  }
}

@media(max-width: 768px) {
  .about-hero-section {
    padding: 80px 0 60px;
  }

  .about-hero-heading {
    font-size: 36px;
  }

  .about-hero-description {
    font-size: 15px;
  }

  .about-journey-section,
  .about-what-we-do-section,
  .about-global-section {
    padding: 60px 0;
  }

  .about-section-title,
  .about-main-title,
  .global-title {
    font-size: 32px;
  }

  .about-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }

  .about-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .global-icon {
    width: 80px;
    height: 80px;
    font-size: 35px;
  }

  .global-text {
    font-size: 16px;
  }

  .global-content-wrapper {
    gap: 30px;
  }

  .global-map-image {
    min-height: 300px;
  }
}

/* ---------------- CRICKET BALLS PAGE ---------------- */

.cricket-balls-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cricket-balls-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cricket-balls-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cricket-balls-subheading {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.cricket-balls-hero-heading {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: white;
  margin: 0 0 30px 0;
  font-weight: 700;
  line-height: 1.3;
}

.cricket-balls-hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 auto 25px;
  font-family: 'Montserrat', sans-serif;
  max-width: 850px;
}

.cricket-balls-hero-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.cricket-balls-hero-decoration .decoration-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.cricket-balls-hero-decoration .decoration-diamond {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* ---------------- BANNER SECOND LEVEL ---------------- */

.banner-second-level {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-second-level.bat .bg-img img{
  object-position: center;
}
.banner-second-level.packaging .bg-img img{
  object-position: bottom;
}
.banner-second-level .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.banner-second-level .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.banner-second-level .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-second-level .content {
  max-width: 800px;
  padding: 60px 40px;

}

.banner-second-level .content .hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--primary-color);
  margin: 0 0 25px 0;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.banner-second-level .content .hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.banner-second-level .content .hero-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-top: 0;
  font-weight: 400;
  max-width: 100%;
}

/* Banner Second Level Responsive */
@media (max-width: 1024px) {
  .banner-second-level {
    min-height: 450px;
  }

  .banner-second-level .content {
    padding: 50px 35px;
    max-width: 700px;
  }

  .banner-second-level .content .hero-subtitle {
    font-size: 42px;
  }

  .banner-second-level .content .hero-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .banner-second-level {
    min-height: 400px;
  }

  .banner-second-level .content {
    padding: 40px 30px;
    max-width: 100%;
  }

  .banner-second-level .content .hero-subtitle {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .banner-second-level .content .hero-subtitle::after {
    width: 80px;
    height: 3px;
  }

  .banner-second-level .content .hero-description {
    font-size: 16px;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .banner-second-level {
    min-height: 350px;
  }

  .banner-second-level .content {
    padding: 30px 20px;
    border-width: 2px;
  }

  .banner-second-level .content .hero-subtitle {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .banner-second-level .content .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Legacy Section */
.cricket-balls-legacy-section {
  background-color: var(--secondary-bg);
  padding: 100px 0;
}

.cricket-balls-content-block {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.cricket-balls-icon-wrapper {
  flex-shrink: 0;
}

.cricket-balls-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 50px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.cricket-balls-text-content {
  flex: 1;
}

.cricket-balls-section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--text-dark);
  margin: 0 0 30px 0;
  font-weight: 700;
}

.cricket-balls-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 25px 0;
}

.cricket-balls-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px 0;
}

.cricket-balls-features-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #555;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.cricket-balls-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 20px;
}

/* Worldwide Popularity Section */
.cricket-balls-popularity-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 100px 0;
  color: white;
  position: relative;
}

.cricket-balls-popularity-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cricket-balls-popularity-section h2 {
  color: #fff;
}

.cricket-balls-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.cricket-balls-main-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--primary-color);
  margin: 0;
  font-weight: 700;
}

.cricket-balls-popularity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cricket-balls-popularity-text {
  text-align: left;
}

.cricket-balls-popularity-text .cricket-balls-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.cricket-balls-countries {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 25px 0;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
}

.cricket-balls-countries strong {
  color: white;
  font-weight: 600;
}

.cricket-balls-image-wrapper {
  position: relative;
}

.cricket-balls-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: var(--secondary-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;

}

.cricket-balls-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cricket-balls-image-wrapper:hover .cricket-balls-image img {
  transform: scale(1.05);
}

/* Quality Commitment Section */
.cricket-balls-quality-section {
  background-color: var(--secondary-bg);
  padding: 100px 0;
}

.cricket-balls-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.cricket-balls-quality-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cricket-balls-quality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-color);
  border-color: var(--primary-color);
}

.quality-feature-icon {
  width: 80px;
  height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 35px;
  margin: 0 auto 25px;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.quality-feature-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  font-weight: 700;
}

.quality-feature-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
}

.cricket-balls-quality-statement {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.quality-statement-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
  font-style: italic;
}

/* Tradition Meets Innovation Section */
.cricket-balls-tradition-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
}

.cricket-balls-tradition-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.tradition-message {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tradition-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 45px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  animation: pulse 2s infinite;
}

.tradition-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: white;
  margin: 0 0 25px 0;
  font-weight: 700;
}

.tradition-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
}

/* Cricket Balls Page Responsive */
@media(max-width: 1024px) {
  .cricket-balls-popularity-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cricket-balls-popularity-text {
    text-align: center;
  }

  .cricket-balls-image {
    min-height: 350px;
  }

  .cricket-balls-quality-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cricket-balls-content-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cricket-balls-icon {
    margin-bottom: 30px;
  }

  .cricket-balls-hero-heading {
    font-size: 42px;
  }
}

@media(max-width: 768px) {
  .cricket-balls-hero-section {
    padding: 80px 0 60px;
  }

  .cricket-balls-hero-heading {
    font-size: 36px;
  }

  .cricket-balls-hero-description {
    font-size: 15px;
  }

  .cricket-balls-legacy-section,
  .cricket-balls-popularity-section,
  .cricket-balls-quality-section,
  .cricket-balls-tradition-section {
    padding: 60px 0;
  }

  .cricket-balls-section-title,
  .cricket-balls-main-title,
  .tradition-title {
    font-size: 32px;
  }

  .cricket-balls-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }

  .quality-feature-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .tradition-icon {
    width: 80px;
    height: 80px;
    font-size: 35px;
  }

  .cricket-balls-text,
  .tradition-text {
    font-size: 15px;
  }

  .cricket-balls-countries {
    font-size: 16px;
  }

  .quality-statement-text {
    font-size: 16px;
  }

  .cricket-balls-image {
    min-height: 300px;
  }
}

