/*
 * Nagher Dairy - Custom Premium Vanilla CSS Style System
 */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* CSS Variables */
:root {
    --primary: #1260ab;
    --primary-hover: #0c4c8a;
    --accent-green: #84c340;
    --accent-purple: #5c5763;
    --accent-purple-hover: #786b8a;
    --text-color: #555555;
    --heading-color: #292929;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    --border-color: #eeeeee;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition-fast: all 0.2s ease-in-out;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 20px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.4;
    font-weight: 500;
}

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

/* Top Bar */
.top-bar-wrap {
    background-color: var(--primary);
    color: var(--white);
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

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

.topbar-content i {
    color: var(--white);
    margin-right: 6px;
}

.topbar-content span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.topbar-content a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.topbar-content a:hover {
    opacity: 0.85;
    color: var(--white);
}

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

.top-bar-social a {
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
}

.top-bar-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 1000;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease-out;
    box-shadow: var(--shadow-medium);
}

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

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    transition: var(--transition-smooth);
}

.site-header.sticky .site-header-inner {
    height: 70px;
}

.site-logo img {
    max-width: 147px;
    height: auto;
}

.site-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu > li {
    position: relative;
}

.menu-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--heading-color);
    text-transform: uppercase;
    padding: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.menu-link i {
    font-size: 12px;
    margin-left: 2px;
}

.main-menu > li:hover > .menu-link,
.main-menu > li.active > .menu-link {
    color: var(--primary);
}

/* Dropdown Sub-menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-medium);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

.sub-menu .menu-link {
    font-size: 13px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-transform: capitalize;
}

.sub-menu li:hover > .menu-link {
    background-color: var(--light-bg);
    color: var(--primary);
    padding-left: 25px;
}

/* Nested Submenu (Ghee -> Cow/Buffalo) */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-top: none;
    border-left: 3px solid var(--primary);
}

/* Header Search Form Replace Animation */
.search-toggle-li {
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    color: var(--heading-color);
}

.search-toggle-li:hover {
    color: var(--primary);
}

.header-searchform-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    z-index: 1010;
}

.header-searchform-wrap.active {
    display: flex;
}

.header-searchform {
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
}

.header-searchform input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 18px;
    padding: 10px 0;
    outline: none;
}

.header-searchform input:focus {
    border-color: var(--primary);
}

#searchform-header-replace-close {
    font-size: 24px;
    color: var(--accent-purple);
    cursor: pointer;
    margin-left: 20px;
    transition: var(--transition-fast);
}

#searchform-header-replace-close:hover {
    color: var(--primary);
}

/* Mobile Menu Controls */
.oceanwp-mobile-menu-icon {
    display: none;
    cursor: pointer;
}

.oceanwp-mobile-menu-icon a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--heading-color);
}

.oceanwp-mobile-menu-icon i {
    font-size: 20px;
}

.mobile-dropdown {
    display: none;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
}

.mobile-dropdown .menu {
    display: flex;
    flex-direction: column;
}

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

.mobile-dropdown .menu li a {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 15px;
    text-transform: uppercase;
    color: var(--heading-color);
}

.mobile-dropdown .menu li .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    transform: none;
    background-color: var(--light-bg);
    padding-left: 20px;
}

.mobile-dropdown .menu li .sub-menu a {
    font-size: 13px;
    text-transform: capitalize;
    padding: 8px 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-banner-img {
    width: 100%;
    height: auto;
}

/* Page Banner */
.page-banner {
    position: relative;
    background-image: url('../images/page-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 85px 0;
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--white);
    margin: 0;
    text-transform: capitalize;
}

.page-banner p {
    font-size: 14px;
    font-family: var(--font-body);
    opacity: 0.9;
    margin-top: 5px;
}

/* Two Column Welcome Section */
.welcome-section {
    padding: 80px 0;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-img {
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-green);
}

.welcome-heading {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 18px;
    line-height: 1.3;
}

.welcome-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.85;
    color: #555555;
    text-align: justify;
}

/* Key Category Products Grid */
.category-section {
    padding: 60px 0 80px 0;
    background-color: var(--white);
}

.grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.category-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.category-card-img-wrap {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.category-card img {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: #222222;
    margin-top: 5px;
    text-align: center;
}

/* Curved Shape Divider */
.curved-divider-top {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    background-color: var(--white);
}

.curved-divider-bottom {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: var(--light-bg);
}

.curved-divider-top svg,
.curved-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.curved-divider-top fill,
.curved-divider-bottom fill {
    fill: var(--white);
}

/* About Nagher Section on Homepage */
.about-nagher-section {
    background-color: var(--light-bg);
    color: var(--text-color);
    padding: 70px 0;
    position: relative;
}

.about-collage-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-collage-wrap img {
    max-width: 100%;
    height: auto;
}

.about-title {
    font-family: var(--font-heading);
    color: #222222;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 0;
}

.about-divider {
    width: 60px;
    height: 1px;
    background-color: #cccccc;
    margin: 15px auto 25px auto;
}

.about-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.85;
    color: #555555;
    text-align: justify;
}

/* Carousel Section */
.products-carousel-section {
    padding: 80px 0;
    background-color: var(--white);
}

.carousel-title-center {
    text-align: center;
    margin-bottom: 40px;
}

.carousel-title-center .section-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0;
    padding-bottom: 0;
}

.carousel-title-center .section-title::after {
    display: none;
}

.swiper {
    width: 100%;
    padding: 20px 0 50px 0 !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-product-card {
    background: transparent;
    border: none;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: var(--transition-fast);
}

.slide-product-card img {
    max-height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

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

/* Quote Gradient Banner */
.quote-banner {
    background: linear-gradient(90deg, #1f77ba 0%, #7e4895 50%, #b83d88 100%);
    padding: 45px 0;
    text-align: center;
    color: #ffffff;
}

.quote-banner p {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quote-banner p {
        font-size: 18px;
    }
}

/* About Us Page Custom Styles */
.about-carousel-section {
    padding: 70px 0 50px 0;
    background-color: var(--white);
}

.about-welcome-title-wrap {
    text-align: center;
    margin-bottom: 35px;
}

.about-welcome-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 0;
}

.about-welcome-divider {
    width: 90px;
    height: 1.5px;
    background-color: #222222;
    margin: 12px auto 0 auto;
}

.about-slide-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.about-slide-img-wrap img {
    max-height: 220px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.about-slide-img-wrap:hover img {
    transform: scale(1.08);
}

.about-quality-section {
    padding: 60px 0 70px 0;
    background-color: var(--white);
}

.about-quality-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-quality-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-quality-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.85;
    color: #555555;
    text-align: justify;
}

.about-vm-section {
    padding: 50px 0 90px 0;
    background-color: var(--white);
}

.about-vm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-vm-row:last-child {
    margin-bottom: 0;
}

.about-vm-heading {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 15px;
}

.about-vm-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.85;
    color: #555555;
    text-align: justify;
}

.about-vm-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-vm-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .about-vm-row,
    .about-vm-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-vm-row.reverse .about-vm-img-col {
        order: 2;
    }
    
    .about-vm-row.reverse .about-vm-text-col {
        order: 1;
    }
}

/* Vision / Mission Section */
.vision-mission-section {
    padding: 80px 0;
}

.vision-mission-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.vision-mission-row.reverse {
    flex-direction: row-reverse;
}

.vision-mission-content {
    flex: 1;
}

.vision-mission-img-wrap {
    flex: 1;
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    overflow: hidden;
}

.vision-mission-img-wrap img {
    width: 100%;
    height: auto;
}

/* Product Detail Styles */
.product-detail-section {
    padding: 70px 0 90px 0;
    background-color: var(--white);
}

.product-detail-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.product-detail-img {
    max-height: 420px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-detail-img:hover {
    transform: scale(1.06);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 12px;
}

.product-subheading {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    line-height: 1.45;
    margin-bottom: 18px;
}

.product-description-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.85;
    color: #555555;
    text-align: justify;
    margin-bottom: 25px;
}

/* Nutrition Table styles */
.nutrition-table-wrap {
    margin-top: 10px;
    width: 100%;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.nutrition-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #555555;
}

.nutrition-table td:first-child {
    width: 50%;
    font-weight: normal;
    color: #333333;
}

.nutrition-table tr:nth-child(even) {
    background-color: transparent;
}

/* Infrastructure Page Styles */
.infra-page-content {
    padding: 70px 0 90px 0;
    background-color: var(--white);
}

.infra-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.infra-section-row:last-child {
    margin-bottom: 0;
}

.infra-col-text {
    display: flex;
    flex-direction: column;
}

.infra-heading {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    color: #222222;
    text-align: center;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.infra-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.85;
    color: #555555;
    text-align: justify;
}

.infra-col-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.infra-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .infra-section-row,
    .infra-section-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .infra-section-row.reverse .infra-col-img {
        order: 2;
    }
    
    .infra-section-row.reverse .infra-col-text {
        order: 1;
    }
}

/* Infrastructure stats block */
.infra-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}

.infra-stat-card {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
}

.infra-stat-card .number {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
}

.infra-stat-card .label {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--heading-color);
    margin-top: 5px;
}

/* Gallery styles */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-light);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 96, 171, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 24px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

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

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* Contact Us Grid & Form */
.contact-section {
    padding: 80px 0;
}

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

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

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

.contact-info-text h3 {
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.contact-info-text p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-form-wrap {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.contact-form-wrap h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--heading-color);
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    padding: 12px 15px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-color);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(18, 96, 171, 0.2);
}

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

.form-char-counter {
    font-size: 11px;
    color: #999;
    text-align: right;
    display: block;
    margin-top: 5px;
}

.btn-submit {
    background-color: var(--accent-purple);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid var(--white);
    padding: 12px 35px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    background-color: var(--accent-purple-hover);
}

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
    display: none;
}

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

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

/* Map Section */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer Section */
.site-footer {
    background-color: #f5f5f5;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0 0;
    font-size: 13px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-widget h4 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 10px;
    border-left: 3px solid var(--accent-purple);
    border-bottom: none;
    line-height: 1.2;
}

.footer-widget p {
    color: #777777;
    line-height: 1.8;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid #aaaaaa;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    font-size: 14px;
}

.footer-social-icons a:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Bottom Footer */
.footer-bottom {
    background-color: var(--black);
    color: #e4f0f5;
    padding: 16px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom a {
    color: #e4f0f5;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Scroll To Top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(18, 96, 171, 0.8);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition-fast);
}

.scroll-top:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.scroll-top.active {
    display: flex;
}

/* Sticky WhatsApp Icon */
.wasb-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.wasb-button img {
    width: 50px;
    height: 50px;
    opacity: 0.95;
}

.wasb-button img:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* Media Queries */

/* Tablet View */
@media screen and (max-width: 1024px) {
    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .infra-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-social {
        justify-content: center;
    }
    
    .main-menu {
        display: none; /* Hide desktop main menu */
    }
    
    .oceanwp-mobile-menu-icon {
        display: block; /* Show mobile hamburger toggle */
    }
    
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-mission-row,
    .vision-mission-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-row {
        grid-template-columns: 1fr;
    }
    
    .infra-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev {
        left: -40px;
    }
    
    .lightbox-next {
        right: -40px;
    }
}

/* Tiny Mobile View */
@media screen and (max-width: 480px) {
    .grid-4col {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .page-banner h1 {
        font-size: 28px;
    }
    .contact-form-wrap {
        padding: 20px;
    }
}

/* Quote Gradient Banner */
.quote-banner {
    background: linear-gradient(to right, #3aa4cf 0%, #7b62a6 50%, #c2468c 100%);
    padding: 35px 20px;
    text-align: center;
    color: var(--white);
}

.quote-banner p {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 400;
    margin: 0;
    color: var(--white);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .quote-banner {
        padding: 25px 15px;
    }
    .quote-banner p {
        font-size: 15px;
        line-height: 1.5;
    }
}
