/* ========================================
   ELVITO CERAMIC - CLONE STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #046bd2;
    --primary-hover: #045cb4;
    --secondary-color: #1e293b;
    --text-color: #334155;
    --white: #ffffff;
    --light-bg: #f0f5fa;
    --dark-bg: #111111;
    --border-color: #d1d5db;
    --footer-bg: #1a1a1a;
    --whatsapp-green: #25d366;
    
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --font-alt: 'Montserrat Alternates', sans-serif;
    --font-display: 'Alata', sans-serif;
    
    --container-width: 1240px;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   HEADER STYLES
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.site-header.sticky {
    animation: fadeInDown 0.5s ease;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.site-branding {
    flex: 0 0 auto;
}

.site-logo {
    display: block;
}

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

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-main-container {
    display: flex;
}

#menu-main {
    display: flex;
    align-items: center;
    gap: 5px;
}

#menu-main > li > a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    display: block;
    position: relative;
}

#menu-main > li > a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    border-radius: 5px;
}

.menu-item.has-submenu {
    position: relative;
}

.menu-item.has-submenu > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 10px;
}

.menu-item.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.submenu li a {
    display: block;
    padding: 12px 18px;
    color: var(--secondary-color);
    font-size: 14px;
    white-space: nowrap;
}

.submenu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

/* Sub-submenu */
.submenu .submenu {
    left: 100%;
    top: 0;
    margin-left: 1px;
}

.submenu li.has-submenu > a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
}

.submenu li.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 25px;
}

.hamburger-lines .line {
    display: block;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.header-extras {
    flex: 0 0 auto;
}

.gtranslate {
    display: block;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 1s ease;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-title {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.about-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-features {
    margin-bottom: 35px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--secondary-color);
}

.about-features li i {
    color: var(--primary-color);
    font-size: 18px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--white);
    transform: translateX(5px);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.circle-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: url('https://elvitoceramic.com/wp-content/uploads/2026/03/Circle.png') no-repeat center;
    background-size: contain;
    top: -30px;
    right: -30px;
    animation: rotateZ 20s linear infinite;
    z-index: -1;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.section-header .section-title {
    font-size: 38px;
    color: var(--secondary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* Flip Box Styles */
.flip-box {
    background: transparent;
    perspective: 1000px;
    height: 300px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flip-box-front {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.flip-box-front img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.flip-box-front h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

.flip-box-back {
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transform: rotateY(180deg);
}

.flip-box-back h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.flip-box-back p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-view-more {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

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

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content .section-title {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.feature-box h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.why-choose-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ========================================
   GLOBAL REACH SECTION
   ======================================== */
.global-reach-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.global-reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.global-reach-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.global-reach-content .section-title {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.global-reach-content .section-description {
    margin-bottom: 30px;
}

/* ========================================
   STATISTICS SECTION
   ======================================== */
.statistics-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box {
    color: var(--white);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.site-footer {
    background: var(--footer-bg);
    color: #cccccc;
}

.footer-main {
    padding: 70px 0;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-address p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
}

.map-link:hover {
    color: var(--white);
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    margin-bottom: 12px;
    font-size: 15px;
}

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

.contact-link i {
    color: var(--primary-color);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

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

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaaaaa;
    margin-top: 20px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 10px;
}

.footer-bottom {
    background: #111111;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

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

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

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(4, 107, 210, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

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

.scroll-to-top.show {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes rotateZ {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .why-choose-grid,
    .global-reach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image,
    .why-choose-image,
    .global-reach-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .menu-main-container {
        display: block;
        padding: 20px;
    }
    
    #menu-main {
        flex-direction: column;
    }
    
    #menu-main > li > a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin-left: 20px;
        display: none;
    }
    
    .menu-item.has-submenu:hover > .submenu {
        display: block;
    }
    
    .submenu .submenu {
        margin-left: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .about-content .section-title,
    .section-header .section-title,
    .why-choose-content .section-title,
    .global-reach-content .section-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .flip-box {
        height: 250px;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .flip-box {
        height: 280px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* ========================================
   COMPANY PROFILE - PAGE BANNER
   ======================================== */
.page-banner {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    text-align: center;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

.banner-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.banner-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.banner-btn:hover {
    background: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   COMPANY PROFILE - ABOUT SECTION
   ======================================== */
.about-profile-section {
    padding: 100px 0;
    background: var(--white);
}

.about-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-profile-content {
    position: relative;
}

.circle-decoration-left {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url('https://elvitoceramic.com/wp-content/uploads/2026/03/Circle.png') no-repeat center;
    background-size: contain;
    top: -20px;
    left: -20px;
    animation: rotateZ 20s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

.about-profile-content .section-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-profile-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-alt);
}

.about-profile-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 18px;
}

.about-profile-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ========================================
   COMPANY PROFILE - VISION SECTION
   ======================================== */
.vision-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.vision-card:hover .vision-icon {
    background: var(--secondary-color);
    transform: rotateY(180deg);
}

.vision-icon i {
    font-size: 28px;
    color: var(--white);
}

.vision-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.vision-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

/* ========================================
   COMPANY PROFILE - TRUST SECTION
   ======================================== */
.trust-section {
    padding: 100px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-content .section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.trust-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    background: var(--primary-color);
}

.trust-icon i {
    font-size: 22px;
    color: var(--primary-color);
    transition: var(--transition);
}

.trust-item:hover .trust-icon i {
    color: var(--white);
}

.trust-text h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.trust-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
}

.trust-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESPONSIVE - COMPANY PROFILE
   ======================================== */
@media (max-width: 1024px) {
    .about-profile-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-profile-image,
    .trust-image {
        order: -1;
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 15px;
    }
    
    .about-profile-content .section-title {
        font-size: 26px;
    }
    
    .trust-content .section-title {
        font-size: 28px;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        flex-direction: column;
    }
    
    .circle-decoration-left {
        width: 60px;
        height: 60px;
        top: -15px;
        left: -15px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 150px 0 60px;
    }
    
    .banner-title {
        font-size: 28px;
    }
}

/* ========================================
   SECTION HEADER CENTERED (shared)
   ======================================== */
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center .section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   EXPORT PAGE - ABOUT SECTION
   ======================================== */
.export-about-section {
    padding: 100px 0;
    background: var(--white);
}

.export-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.export-about-content {
    position: relative;
}

.circle-decoration-export {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url('https://elvitoceramic.com/wp-content/uploads/2026/03/Circle.png') no-repeat center;
    background-size: contain;
    top: -30px;
    left: -20px;
    animation: rotateZ 20s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

.export-about-content .section-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.export-about-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-alt);
}

.export-about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.export-about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ========================================
   EXPORT PAGE - WHY SOURCE SECTION
   ======================================== */
.why-source-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.why-source-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-source-content .section-title {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.why-source-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 18px;
}

.why-source-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ========================================
   EXPORT PAGE - GLOBAL REACH / REGIONS
   ======================================== */
.global-reach-export {
    padding: 100px 0;
    background: var(--white);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.region-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.region-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.region-card:hover .region-icon {
    background: var(--secondary-color);
    transform: rotateY(360deg);
}

.region-icon i {
    font-size: 28px;
    color: var(--white);
}

.region-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.region-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    text-align: left;
}

/* ========================================
   CONTACT PAGE - INFO CARDS
   ======================================== */
.contact-info-section {
    padding: 100px 0 60px;
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.contact-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--secondary-color);
    transform: rotateY(180deg);
}

.contact-card-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
}

.contact-card h3 a {
    color: var(--secondary-color);
}

.contact-card h3 a:hover {
    color: var(--primary-color);
}

/* ========================================
   CONTACT PAGE - FORM
   ======================================== */
.contact-form-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-color);
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.1);
}

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

.btn-submit {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 107, 210, 0.3);
}

/* ========================================
   RESPONSIVE - EXPORT & CONTACT PAGES
   ======================================== */
@media (max-width: 1024px) {
    .export-about-grid,
    .why-source-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .export-about-image,
    .why-source-image {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .export-about-content .section-title,
    .why-source-content .section-title,
    .section-header-center .section-title {
        font-size: 28px;
    }

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

    .region-card p {
        text-align: center;
    }

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

    .contact-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }

    .circle-decoration-export {
        width: 60px;
        height: 60px;
        top: -20px;
        left: -10px;
    }
}

/* ========================================
   GTranslate Widget Fixes
   ======================================== */
.gtranslate {
    font-size: 12px;
}

.gtranslate select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--white);
    font-family: var(--font-primary);
    cursor: pointer;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    position: relative;
}

.goog-te-gadget {
    font-family: var(--font-primary) !important;
}

.goog-te-gadget-simple {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.goog-te-gadget-simple span {
    font-size: 14px !important;
}

.skiptranslate {
    display: none !important;
}

#goog-gt-tt {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* ========================================
   CATALOG PRODUCT GRID
   ======================================== */
.catalog-section {
    padding: 100px 0;
    background: var(--white);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catalog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.catalog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.catalog-info {
    padding: 20px;
    text-align: center;
}

.catalog-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-download:hover {
    background: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
}

/* Bar Separator */
.bar-separator {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .catalog-image {
        height: 200px;
    }
}

/* FAQs Section */
.faqs-section {
    padding: 80px 0;
    background: var(--white);
}

.faqs-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.faqs-wrapper .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.faqs-wrapper .section-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faqs-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faqs-list {
    flex: 1.2;
}

.faqs-image {
    flex: 0.8;
    position: sticky;
    top: 100px;
}

.faqs-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-item {
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}

@media (max-width: 768px) {
    .faqs-content {
        flex-direction: column-reverse;
    }
    .faqs-image {
        position: static;
    }
    .faqs-section {
        padding: 50px 0;
    }
}