/* ============================================
   MAGADH INTERNATIONAL - Stylesheet
   Professional Theme - Mobile First
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #31694E; /* Primary Color */
    --primary-dark: #24523D;
    --primary-light: #428064;
    --accent-color: #3A7A5D; /* Accent Color */
    --accent-light: #E8F3ED;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --border-color: #E0E0E0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(49, 105, 78, 0.2);
    --max-width: 1200px;
    --section-padding: 4rem 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.top-bar-container > * {
    display: flex;
    align-items: center;
}

.top-bar-container .top-bar-right {
    margin-left: auto;
}

.top-bar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 2rem;
    transition: var(--transition);
}

.top-bar .logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.top-bar .logo-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    white-space: nowrap;
}

.contact-item.location-item {
    align-items: flex-start;
    white-space: normal;
}

.contact-item.clock-item {
    align-items: flex-start;
    white-space: normal;
}

.contact-item.phone-item {
    align-items: flex-start;
    white-space: normal;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 4px rgba(49, 105, 78, 0.3));
    animation: icon3D 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes icon3D {
    0%, 100% {
        transform: perspective(100px) rotateY(0deg) scale(1);
        filter: drop-shadow(2px 2px 4px rgba(49, 105, 78, 0.3));
    }
    50% {
        transform: perspective(100px) rotateY(10deg) scale(1.05);
        filter: drop-shadow(4px 4px 8px rgba(49, 105, 78, 0.5));
    }
}

.phone-item i {
    margin-top: 0.125rem;
    font-size: 1.6rem;
    animation: phoneRing3D 2s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(49, 105, 78, 0.3));
}

@keyframes phoneRing3D {
    0%, 100% {
        transform: perspective(150px) rotateY(0deg) rotate(-5deg) scale(1);
        filter: drop-shadow(2px 2px 4px rgba(49, 105, 78, 0.3));
    }
    25% {
        transform: perspective(150px) rotateY(10deg) rotate(-8deg) scale(1.08);
        filter: drop-shadow(4px 4px 8px rgba(49, 105, 78, 0.5));
    }
    50% {
        transform: perspective(150px) rotateY(0deg) rotate(-5deg) scale(1.1);
        filter: drop-shadow(3px 3px 6px rgba(49, 105, 78, 0.4));
    }
    75% {
        transform: perspective(150px) rotateY(-10deg) rotate(-2deg) scale(1.08);
        filter: drop-shadow(4px 4px 8px rgba(49, 105, 78, 0.5));
    }
}

.location-item i {
    margin-top: 0.125rem;
    font-size: 1.6rem;
    animation: locationPulse3D 2.5s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(49, 105, 78, 0.3));
}

@keyframes locationPulse3D {
    0%, 100% {
        transform: perspective(120px) rotateY(0deg) scale(1);
        filter: drop-shadow(2px 2px 4px rgba(49, 105, 78, 0.3));
    }
    50% {
        transform: perspective(120px) rotateY(15deg) scale(1.15);
        filter: drop-shadow(5px 5px 10px rgba(49, 105, 78, 0.6));
    }
}

.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.phone-label {
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 400;
}

.phone-number {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
}

.clock-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.clock-label {
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 400;
}

.clock-time {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
}

.clock-item i {
    margin-top: 0.125rem;
    font-size: 1.6rem;
    animation: clockTick3D 2s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(49, 105, 78, 0.3));
}

@keyframes clockTick3D {
    0%, 100% {
        transform: perspective(130px) rotateY(0deg) rotateZ(0deg) scale(1);
        filter: drop-shadow(2px 2px 4px rgba(49, 105, 78, 0.3));
    }
    25% {
        transform: perspective(130px) rotateY(8deg) rotateZ(5deg) scale(1.08);
        filter: drop-shadow(4px 4px 8px rgba(49, 105, 78, 0.5));
    }
    50% {
        transform: perspective(130px) rotateY(0deg) rotateZ(0deg) scale(1.1);
        filter: drop-shadow(3px 3px 6px rgba(49, 105, 78, 0.4));
    }
    75% {
        transform: perspective(130px) rotateY(-8deg) rotateZ(-5deg) scale(1.08);
        filter: drop-shadow(4px 4px 8px rgba(49, 105, 78, 0.5));
    }
}

.contact-item span {
    color: var(--text-dark);
}

.contact-item span strong {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item > strong {
    color: var(--text-dark);
    font-weight: 700;
}

.location-text {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.location-text div {
    color: var(--text-dark);
}

.location-text .highlight-gaya {
    color: var(--primary-color);
    font-weight: 700;
}

.divider {
    width: 1px;
    height: 25px;
    background-color: transparent;
    border-left: 1px dashed #D0D0D0;
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-right a {
    color: var(--text-medium);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.top-bar-right a i {
    font-size: 1.4rem;
    animation: socialFloat3D 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transform-style: preserve-3d;
}

@keyframes socialFloat3D {
    0%, 100% {
        transform: perspective(100px) translateY(0) rotateY(0deg) scale(1);
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    }
    50% {
        transform: perspective(100px) translateY(-8px) rotateY(15deg) scale(1.1);
        filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.4));
    }
}

.top-bar-right a:nth-child(1) i {
    --delay: 0s;
}

.top-bar-right a:nth-child(2) i {
    --delay: 0.3s;
}

.top-bar-right a:nth-child(3) i {
    --delay: 0.6s;
}

.top-bar-right a:nth-child(4) i {
    --delay: 0.9s;
}

.top-bar-right a:hover {
    color: var(--primary-color);
    background-color: var(--accent-light);
    transform: translateY(-3px) scale(1.1);
}

.top-bar-right a:hover i {
    animation: none;
    transform: scale(1.2);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.875rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    opacity: 0.9;
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
}

.btn-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(49, 105, 78, 0.2);
}

.btn-enquiry:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(49, 105, 78, 0.3);
}

.btn-enquiry i {
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-enquiry:hover i {
    transform: translateX(3px);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

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

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.875rem;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px 2px 0 0;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item-dropdown > .nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background-color: var(--white);
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

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

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.2px;
}

.dropdown-menu a:hover {
    background-color: var(--accent-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navbar Logo */
.nav-logo-mobile {
    display: none;
    align-items: center;
    text-decoration: none;
    margin-left: 1rem;
    flex: 1;
    gap: 0.75rem;
}

.nav-logo-img-mobile {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-title-mobile {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-logo-mobile:hover .nav-logo-img-mobile {
    opacity: 0.9;
    transform: scale(1.02);
}

.nav-logo-mobile:hover .nav-title-mobile {
    color: var(--primary-dark);
}

/* Big Animated Banner */
.big-animated-banner {
    background: linear-gradient(180deg, #E8F5E9 0%, #F1F8E9 100%);
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    align-items: center;
}

/* Full HD and larger screens */
@media (min-width: 1920px) {
    .big-animated-banner {
        min-height: 1200px;
        padding: 6rem 2rem;
    }

    .heading-title {
        font-size: 5.5rem;
        letter-spacing: 5px;
    }

    .banner-text {
        font-size: 2.2rem;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .big-animated-banner {
        min-height: 900px;
        padding: 5rem 1.5rem;
    }

    .heading-title {
        font-size: 5rem;
        letter-spacing: 4px;
    }

    .banner-text {
        font-size: 2rem;
    }
}

.big-animated-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cccc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 0;
    animation: zoomInOut 10s ease-in-out infinite;
}

.big-animated-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.3) 0%, rgba(241, 248, 233, 0.4) 100%);
    z-index: 1;
}

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

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.banner-heading {
    margin-bottom: 1.5rem;
}

.heading-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.banner-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

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

/* Enquiry Now Section */
.enquiry-now-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.enquiry-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.enquiry-now-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.enquiry-now-content {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.enquiry-now-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.enquiry-now-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.enquiry-now-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.enquiry-now-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: 1.5rem;
    line-height: 1.6;
}

.enquiry-now-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.enquiry-now-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.enquiry-now-form .form-group {
    position: relative;
}

.enquiry-now-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.enquiry-now-form .form-group label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.enquiry-now-form .form-group input,
.enquiry-now-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-dark);
}

.enquiry-now-form .form-group input:focus,
.enquiry-now-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(49, 105, 78, 0.1);
}

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

.btn-submit-enquiry {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
    margin-top: 0.5rem;
}

.btn-submit-enquiry:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(49, 105, 78, 0.4);
}

.btn-submit-enquiry:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-submit-enquiry:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit-enquiry .btn-icon {
    transition: var(--transition);
}

.btn-submit-enquiry:hover:not(:disabled) .btn-icon {
    transform: translateX(5px);
}

.btn-submit-enquiry .btn-loader {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit-enquiry:disabled .btn-text,
.btn-submit-enquiry:disabled .btn-icon {
    display: none;
}

.btn-submit-enquiry:disabled .btn-loader {
    display: flex;
}

/* Welcome Section */
.welcome-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAF9 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(49, 105, 78, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(49, 105, 78, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.welcome-wrapper {
    position: relative;
    z-index: 1;
}

.welcome-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-left {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-heading {
    margin-bottom: 3rem;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.title-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: expandLine 1s ease-out;
}

.welcome-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.6rem 2.5rem;
    background: rgba(232, 245, 233, 0.5);
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    position: relative;
}

.title-underline-text {
    position: relative;
    display: inline-block;
}

.title-underline-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.4s backwards;
}

.welcome-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-content-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
    animation: fadeInUp 0.8s ease-out backwards;
}

.story-content-card:nth-child(1) {
    animation-delay: 0.3s;
}

.story-content-card:nth-child(2) {
    animation-delay: 0.5s;
}

.story-content-card:nth-child(3) {
    animation-delay: 0.7s;
}

.story-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 105, 78, 0.05), transparent);
    transition: left 0.6s ease;
}

.story-content-card:hover::before {
    left: 100%;
}

.story-content-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(49, 105, 78, 0.2);
    border-color: var(--primary-color);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.25);
    transition: all 0.4s ease;
}

.story-content-card:hover .story-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(49, 105, 78, 0.45);
}

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

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

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

.welcome-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 550px;
    height: 450px;
    position: relative;
}

.welcome-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out backwards;
    background-color: #f5f5f5;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    animation-delay: 0.2s;
    border-top-right-radius: 50px;
}

.welcome-image-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    animation-delay: 0.4s;
    border-bottom-left-radius: 50px;
}

.welcome-image-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    animation-delay: 0.6s;
    border-top-left-radius: 50px;
}

.welcome-image-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    animation-delay: 0.8s;
    border-bottom-right-radius: 50px;
}

.welcome-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(49, 105, 78, 0.1) 0%, rgba(49, 105, 78, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.welcome-image-item:hover::before {
    opacity: 1;
}

.welcome-image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(49, 105, 78, 0.3);
    z-index: 2;
}

.welcome-image-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.welcome-image-item:nth-child(1) img {
    border-top-right-radius: 50px;
}

.welcome-image-item:nth-child(2) img {
    border-bottom-left-radius: 50px;
}

.welcome-image-item:nth-child(3) img {
    border-top-left-radius: 50px;
}

.welcome-image-item:nth-child(4) img {
    border-bottom-right-radius: 50px;
}

.palm-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(49, 105, 78, 0.02) 100px,
            rgba(49, 105, 78, 0.02) 102px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 100px,
            rgba(49, 105, 78, 0.02) 100px,
            rgba(49, 105, 78, 0.02) 102px
        );
    opacity: 0.3;
    z-index: 1;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(49, 105, 78, 0.5), rgba(49, 105, 78, 0.6)), url('images/cocopeat-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: var(--section-padding);
    text-align: center;
    animation: fadeIn 1s ease-in;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Summary Section */
.about-summary {
    padding: 3rem 1.5rem;
    background-color: var(--white);
    margin-top: -1rem;
}

.about-summary-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-summary .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    animation: fadeInUp 0.8s ease-out, gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(49, 105, 78, 0.2);
}

.about-summary .section-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    animation: glowPulse 2s ease-in-out infinite;
}

.about-summary .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% auto;
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.3s backwards, gradientShift 2s ease infinite;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

.about-summary-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.about-summary-content p:last-child {
    margin-bottom: 0;
}

/* Our Products Section */
.our-products-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 50%, #F8FAF9 100%);
    background-size: 200% 200%;
    margin-top: -1rem;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

.our-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(49, 105, 78, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(49, 105, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.products-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

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

.products-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease-out, gradientShift 3s ease infinite;
    letter-spacing: 1px;
}

.products-title::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    animation: glowPulse 2s ease-in-out infinite;
}

.products-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% auto;
    border-radius: 3px;
    animation: expandLine 1s ease-out 0.3s backwards, gradientShift 2s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.products-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.product-detail-item {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
}

.product-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 105, 78, 0.05), transparent);
    transition: left 0.6s ease;
}

.product-detail-item:hover::before {
    left: 100%;
}

.product-detail-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(49, 105, 78, 0.2);
    border-color: var(--primary-color);
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(49, 105, 78, 0.35);
    transition: all 0.4s ease;
    animation: iconBounce 2s ease-in-out infinite;
}

.product-detail-item:hover .detail-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(49, 105, 78, 0.45);
}

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

.detail-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-specs,
.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li,
.product-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-specs li::before,
.product-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.product-specs li strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Our Story Section */
.our-story-section {
    padding: 3rem 1.5rem;
    background-color: var(--white);
    text-align: center;
}

.our-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.our-story-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 2.5rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.our-story-text {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.our-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out backwards;
}

.our-story-text p:nth-child(1) {
    animation-delay: 0.2s;
}

.our-story-text p:nth-child(2) {
    animation-delay: 0.4s;
}

.our-story-text p:nth-child(3) {
    animation-delay: 0.6s;
}

.our-story-text p:last-child {
    margin-bottom: 2.5rem;
}

/* Our Journey Section */
.our-journey-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--accent-light);
}

.journey-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.journey-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(232, 245, 237, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.journey-item:nth-child(1) {
    animation-delay: 0.2s;
}

.journey-item:nth-child(2) {
    animation-delay: 0.4s;
}

.journey-item:nth-child(3) {
    animation-delay: 0.6s;
}

.journey-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(49, 105, 78, 0.15);
    border-left-width: 6px;
}

.journey-year {
    min-width: 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(49, 105, 78, 0.15);
    border: 2px solid var(--primary-color);
}

.journey-description {
    flex: 1;
}

.journey-description h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.journey-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 3rem 1.5rem;
    background-color: var(--accent-light);
    margin-top: -1rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
}

/* Features Section */
.features {
    padding: 3rem 1.5rem;
    background-color: var(--white);
    margin-top: -1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-medium);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 3rem 1.5rem;
    background-color: var(--white);
    margin-top: -1rem;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.title-line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.title-prefix {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.section-title-main {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #F0F0F0;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(49, 105, 78, 0.15);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 12px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.25);
}

.why-choose-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Why Choose Section - Legacy (for backward compatibility if needed) */
.why-choose {
    padding: var(--section-padding);
    background-color: var(--accent-light);
}

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

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Product Detail Pages */
.product-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.product-detail-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 3rem;
    text-align: justify;
}

.application-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.application-card {
    background: linear-gradient(135deg, rgba(232, 245, 237, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(49, 105, 78, 0.15);
    border-left-width: 6px;
}

.application-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.25);
}

.application-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.application-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.application-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.application-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.product-specifications {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--accent-light);
    border-radius: 12px;
}

.product-specifications h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .application-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spec-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
}

.spec-item strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* Products Hero Banner */
.products-hero-banner {
    background: linear-gradient(180deg, #E8F5E9 0%, #F1F8E9 100%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1rem;
}

.products-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cccc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
    animation: zoomInOut 10s ease-in-out infinite;
}

.products-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 105, 78, 0.5) 0%, rgba(49, 105, 78, 0.6) 100%);
    z-index: 1;
}

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

.products-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.products-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Products Section */
.products {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAF9 100%);
    position: relative;
}

.products-controls {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-medium);
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(49, 105, 78, 0.15);
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 105, 78, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    opacity: 1;
    transform: scale(1);
    animation: fadeInUp 0.6s ease-out backwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card.hidden {
    display: none;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(49, 105, 78, 0.25);
    border-color: var(--primary-color);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(49, 105, 78, 0.85) 0%, rgba(49, 105, 78, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    padding: 0.875rem 2rem;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
}

.product-card:hover .btn-view-details {
    transform: translateY(0);
}

.btn-view-details:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.4);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.product-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-dark);
}

.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.product-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.product-specs {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    flex: 1;
}

.product-specs li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-specs li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.product-specs li strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.product-quality {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-enquire {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-enquire:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(49, 105, 78, 0.4);
}

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

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-medium);
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-results h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--primary-dark);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 3rem 2.5rem;
}

.modal-body img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.modal-body h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body .product-description {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.modal-body .product-specs {
    margin-bottom: 2rem;
}

.modal-body .product-specs li {
    font-size: 1.05rem;
    padding: 0.75rem 0;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.about-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.about-point {
    padding: 1rem;
    background-color: var(--accent-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.about-point p {
    margin: 0;
    color: var(--text-dark);
}

/* About Hero Banner */
.about-hero-banner {
    background: linear-gradient(180deg, #E8F5E9 0%, #F1F8E9 100%);
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: -1rem;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cccc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85;
    z-index: 0;
    animation: zoomInOut 10s ease-in-out infinite;
}

.about-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 105, 78, 0.4) 0%, rgba(49, 105, 78, 0.5) 100%);
    z-index: 1;
}

/* Stats Section */
.stats-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 105, 78, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAF9 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(49, 105, 78, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(49, 105, 78, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(49, 105, 78, 0.2);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(49, 105, 78, 0.4);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Commitment Section */
.commitment-section {
    padding: 4rem 1.5rem;
    background-color: var(--accent-light);
    position: relative;
}

.commitment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.commitment-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.commitment-item:hover::after {
    transform: scaleX(1);
}

.commitment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(49, 105, 78, 0.2);
    border-color: var(--primary-color);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 6px 20px rgba(49, 105, 78, 0.35);
    transition: all 0.4s ease;
}

.commitment-item:hover .commitment-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(49, 105, 78, 0.45);
}

.commitment-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.commitment-item p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--accent-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details {
    list-style: none;
}

.contact-details li {
    padding: 1rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

/* Enhanced Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    color: var(--white);
}

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

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    color: var(--white);
}

/* Quick Contact Cards */
.quick-contact-section {
    padding: 3rem 1.5rem;
    background-color: #F8FAF9;
}

.quick-contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(49, 105, 78, 0.15);
    border-color: var(--primary-color);
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}

.quick-contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.quick-contact-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.quick-contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quick-contact-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.quick-contact-card:hover .quick-contact-action {
    gap: 0.75rem;
}

/* Contact Main Section */
.contact-main-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.contact-main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-description {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-links-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.social-links-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(49, 105, 78, 0.3);
}

.contact-map-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-map-wrapper {
    width: 100%;
    height: 100%;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Enhanced Contact Form */
.contact-form-section {
    width: 100%;
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-medium);
    font-size: 1rem;
}

.contact-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-enhanced {
    position: relative;
}

.form-group-enhanced label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group-enhanced label i {
    color: var(--primary-color);
}

.required {
    color: #dc3545;
    font-weight: 700;
}

.form-group-enhanced input,
.form-group-enhanced textarea,
.form-group-enhanced select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group-enhanced input:focus,
.form-group-enhanced textarea:focus,
.form-group-enhanced select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(49, 105, 78, 0.1);
}

.form-group-enhanced input.error,
.form-group-enhanced textarea.error,
.form-group-enhanced select.error {
    border-color: #dc3545;
}

.form-group-enhanced input.success,
.form-group-enhanced textarea.success,
.form-group-enhanced select.success {
    border-color: #28a745;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.char-counter.warning {
    color: #ff9800;
}

.char-counter.error {
    color: #dc3545;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-submit-enhanced {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-submit-enhanced:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 105, 78, 0.3);
}

.btn-submit-enhanced:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit-enhanced:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-icon {
    transition: var(--transition);
}

.btn-submit-enhanced:hover:not(:disabled) .btn-icon {
    transform: translateX(5px);
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Contact Page */
@media (min-width: 768px) {
    .contact-main-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-map-container {
        height: 500px;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-hero-title {
        font-size: 3.5rem;
    }
}

/* Map & Enquiry Section */
.map-enquiry-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    position: relative;
}

.map-enquiry-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}

.map-container {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: stretch;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(49, 105, 78, 0.2);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.enquiry-container {
    width: 100%;
    height: 550px;
    display: flex;
    align-items: stretch;
}

.enquiry-form-wrapper {
    background: linear-gradient(135deg, var(--white) 0%, #FAFDFA 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: visible;
    position: relative;
    border: 2px solid rgba(49, 105, 78, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enquiry-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% auto;
    border-radius: 20px 20px 0 0;
    animation: gradientShift 3s ease infinite;
}

.enquiry-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(49, 105, 78, 0.2);
    border-color: rgba(49, 105, 78, 0.2);
}

.enquiry-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
    padding-top: 1rem;
}

.enquiry-subtitle {
    font-size: 0.95rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.enquiry-form {
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    justify-content: space-between;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 0;
}

.enquiry-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.enquiry-form .form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.required {
    color: #dc3545;
}

.enquiry-form .form-group input,
.enquiry-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-dark);
}

.enquiry-form .form-group input:focus,
.enquiry-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(49, 105, 78, 0.1);
    transform: translateY(-2px);
}

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

.enquiry-form .form-group:last-of-type {
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: auto;
    box-shadow: 0 6px 20px rgba(49, 105, 78, 0.35);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(49, 105, 78, 0.4);
}

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

.btn-submit i {
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 50%, #F8FAF9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.testimonials-slider-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    animation: slideLeft 25s linear infinite;
    width: fit-content;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 340px;
    max-width: 340px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 105, 78, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(49, 105, 78, 0.2);
    border-color: var(--primary-color);
}

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

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-designation {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Auto-Scrolling Testimonials Section */
.testimonials-auto-scroll-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.testimonials-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: 1.5rem;
}

.testimonials-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-scroll-container::before,
.testimonials-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonials-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #F8FAF9, transparent);
}

.testimonials-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #F8FAF9, transparent);
}

.testimonials-scroll-track {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 40s linear infinite;
    width: fit-content;
}

.testimonials-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-slide {
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
}

.testimonial-card-slide {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 105, 78, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card-slide:hover::before {
    left: 100%;
}

.testimonial-card-slide:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(49, 105, 78, 0.2);
    border-color: var(--primary-color);
}

.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.testimonial-text-slide {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author-slide {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    margin-bottom: 0.75rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
}

.author-details {
    flex: 1;
}

.author-name-slide {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.author-location-slide {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-location-slide::before {
    content: '📍';
    font-size: 0.85rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-start;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Country Badge */
.testimonial-slide[data-country="india"] .testimonial-card-slide {
    border-left: 4px solid #FF9933;
}

.testimonial-slide[data-country="foreign"] .testimonial-card-slide {
    border-left: 4px solid #0066CC;
}

.testimonial-slide[data-country="india"] .author-location-slide::before {
    content: '🇮🇳';
}

.testimonial-slide[data-country="foreign"] .author-location-slide::before {
    content: '🌍';
}

/* Responsive Design for Auto-Scrolling Testimonials */
@media (max-width: 768px) {
    .testimonials-main-title {
        font-size: 2rem;
    }
    
    .testimonial-slide {
        min-width: 320px;
        max-width: 320px;
    }
    
    .testimonial-card-slide {
        padding: 1.25rem;
    }
    
    .testimonials-scroll-container::before,
    .testimonials-scroll-container::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .testimonials-auto-scroll-section {
        padding: 3rem 0;
    }
    
    .testimonials-main-title {
        font-size: 1.75rem;
    }
    
    .testimonial-slide {
        min-width: 280px;
        max-width: 280px;
    }
    
    .testimonial-text-slide {
        font-size: 0.95rem;
    }

    .nav-title-mobile {
        font-size: 0.75rem !important;
        display: block !important;
    }

    .nav-logo-img-mobile {
        height: 35px;
        max-width: 120px;
    }

    .nav-logo-mobile {
        gap: 0.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem 1.5rem 0.75rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out backwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-logo-wrapper {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
    background-color: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.footer-brand-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-color), rgba(255, 255, 255, 0.9));
    border-radius: 3px;
    margin-bottom: 1rem;
    animation: expandLine 1s ease-out 0.3s backwards;
    box-shadow: 0 2px 8px rgba(232, 245, 237, 0.4);
}

.footer-description {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.footer-social-link:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.footer-social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-social-link:hover i {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
}

.footer-section-title {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 0.6rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-color), transparent);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(232, 245, 237, 0.4);
}

.footer-title-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.footer-section:hover .footer-title-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: rotate(5deg) scale(1.15);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    color: var(--accent-light);
}

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

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

.footer-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0.5rem;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
    border-radius: 2px;
}

.footer-link:hover::before {
    height: 100%;
}

.footer-link i {
    font-size: 0.85rem;
    transition: all 0.3s ease;
    opacity: 1;
    color: var(--accent-light);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.footer-link:hover {
    color: var(--accent-light);
    padding-left: 1rem;
    transform: translateX(5px);
    text-shadow: 0 2px 6px rgba(232, 245, 237, 0.5);
}

.footer-link:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    color: var(--accent-light);
}

.footer-contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-contact-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.footer-contact-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
    text-shadow: 0 2px 6px rgba(232, 245, 237, 0.5);
}

.footer-contact-content p {
    color: var(--white);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 2px solid rgba(232, 245, 237, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    color: var(--white);
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.footer-brand-name {
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.footer-bottom-link:hover {
    color: var(--accent-light);
    text-decoration: underline;
    text-shadow: 0 2px 6px rgba(232, 245, 237, 0.5);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

/* Tablet Styles */
@media (min-width: 768px) {
    :root {
        --section-padding: 5rem 2rem;
    }

    .top-bar {
        display: block;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .banner-left {
        text-align: left;
    }

    .big-animated-banner {
        min-height: 750px;
    }

    .heading-title {
        font-size: 4rem;
        letter-spacing: 3px;
    }

    .banner-text {
        font-size: 1.5rem;
    }

    .welcome-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .welcome-left {
        text-align: center;
        max-width: 1000px;
    }

    .welcome-text {
        margin: 0;
    }

    .welcome-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        max-width: 100%;
        height: 500px;
    }
    
    .welcome-image-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .welcome-image-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .welcome-image-item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .welcome-image-item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .welcome-title {
        font-size: 3.2rem;
    }

    .products-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: stretch;
    }

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

    .products-title {
        text-align: center;
    }

    .products-details {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 1200px;
    }

    .product-detail-item {
        min-height: 250px;
        display: flex;
        align-items: flex-start;
    }

    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .products-hero-title {
        font-size: 2.5rem;
    }

    .products-hero-subtitle {
        font-size: 1.1rem;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }

    .product-image-wrapper {
        height: 250px;
    }

    .modal-content {
        max-width: 90%;
        padding: 1rem;
    }

    .modal-body {
        padding: 2rem 1.5rem;
    }

    .modal-body img {
        height: 250px;
    }

    .modal-body h2 {
        font-size: 1.75rem;
    }

    .map-enquiry-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .map-container {
        height: 600px;
    }

    .enquiry-container {
        height: 600px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .enquiry-now-form .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .enquiry-now-content {
        padding: 3.5rem 2.5rem;
    }

    .enquiry-now-title {
        font-size: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-hero-banner {
        min-height: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonial-card {
        min-width: 420px;
        max-width: 420px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    :root {
        --section-padding: 6rem 2rem;
    }

    .top-bar {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .btn-enquiry {
        display: inline-flex;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: stretch;
    }

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

    .products-details {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        max-width: 1200px;
    }

    .product-detail-item {
        min-height: 280px;
        display: flex;
        align-items: flex-start;
    }

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

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .products-hero-title {
        font-size: 3.5rem;
    }

    .products-hero-subtitle {
        font-size: 1.3rem;
    }

    .products-controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .search-box {
        max-width: 400px;
    }

    .product-image-wrapper {
        height: 320px;
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-enquiry-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .map-container {
        height: 650px;
    }

    .enquiry-container {
        height: 650px;
    }

    .enquiry-form-wrapper {
        padding: 2.25rem 1.75rem;
    }
    
    .enquiry-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .enquiry-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-hero-banner {
        min-height: 600px;
    }

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

    .stats-grid .stat-number {
        font-size: 4rem;
    }

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

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

    .testimonials-title {
        font-size: 3.2rem;
    }

    .testimonial-card {
        min-width: 450px;
        max-width: 450px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 1023px) {
    .top-bar {
        display: none;
    }

    .top-bar .logo-img {
        height: 45px;
        max-width: 150px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 400px;
    }

    .big-animated-banner {
        padding: 3rem 1.5rem;
        min-height: 600px;
    }

    .about-hero-banner {
        padding: 3rem 1.5rem;
        min-height: 350px;
    }

    .heading-title {
        font-size: 2rem;
    }

    .banner-text {
        font-size: 1.1rem;
    }

    .our-story-section {
        padding: 2rem 1.5rem;
    }

    .our-story-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    .our-story-text {
        text-align: center;
    }

    .our-story-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .our-journey-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .journey-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .journey-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .journey-year {
        min-width: auto;
        width: 100%;
        font-size: 1.25rem;
    }

    .journey-description h4 {
        font-size: 1.2rem;
    }

    .journey-description p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .map-container {
        height: 550px;
    }

    .enquiry-container {
        height: auto;
        min-height: 550px;
    }

    .enquiry-form-wrapper {
        overflow-y: visible;
        padding: 1.5rem 1.25rem;
    }

    .enquiry-now-section {
        padding: 3rem 1.5rem;
    }

    .enquiry-now-content {
        padding: 2rem 1.5rem;
    }

    .enquiry-now-title {
        font-size: 2rem;
    }

    .enquiry-now-subtitle {
        font-size: 1rem;
    }

    .enquiry-now-form .form-row {
        grid-template-columns: 1fr;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .our-story-title {
        font-size: 1.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }

    .our-story-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .our-journey-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .journey-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .journey-year {
        min-width: auto;
        width: 100%;
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    .journey-description h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .journey-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .btn-enquiry {
        display: none;
    }

    .logo-img {
        height: 50px;
        max-width: 160px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-container {
        gap: 1rem;
        padding: 0 1rem;
        overflow: visible;
    }

    .nav-logo-mobile {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        min-width: 0;
        flex: 1 1 auto;
        overflow: visible;
    }

    .nav-title-mobile {
        display: block !important;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--primary-color);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        line-height: 1.2;
    }

    .nav-logo-img-mobile {
        height: 40px;
        max-width: 150px;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active + .btn-enquiry {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        font-weight: 700;
        color: var(--primary-color);
    }

    /* Mobile Dropdown */
    .nav-item-dropdown {
        position: static;
    }

    .nav-item-dropdown > .nav-link i {
        margin-left: auto;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        background-color: var(--accent-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu a {
        padding-left: 2rem;
    }

    /* Product Detail Pages Responsive */
    .product-detail-content {
        padding: 2rem;
    }

    .application-categories {
        gap: 1.5rem;
    }

    .application-card {
        padding: 2rem;
    }

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

    .application-categories {
        grid-template-columns: 1fr;
    }

    /* Mobile Products Page Styles */
    .products-hero-banner {
        padding: 3rem 1.5rem;
        min-height: 280px;
    }

    .products-hero-title {
        font-size: 2rem;
    }

    .products-hero-subtitle {
        font-size: 1rem;
    }

    .products-controls {
        gap: 1rem;
    }

    .search-box {
        max-width: 100%;
    }

    .filter-buttons {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .products-grid {
        gap: 1.5rem;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .product-content {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-enquire {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        max-width: 95%;
        margin: 1rem;
        max-height: 85vh;
    }

    .modal-body {
        padding: 1.5rem 1rem;
    }

    .modal-body img {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .modal-body h2 {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .menu-toggle {
        display: none;
    }

    body {
        font-size: 12pt;
    }
}

