/* Himalya Ropes - Professional Stylesheet - Inspired by Industry Leaders */

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

:root {
    --navy: #0A1628;
    --navy-light: #1a2942;
    --gold: #C9A961;
    --gold-dark: #B8935A;
    --text-dark: #0A1628;
    --text-medium: #2d3748;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
    font-style: normal;
    line-height: 1.6;
    font-size: 16px;
    background: var(--white);
    color: var(--text-medium);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.2;
    word-break: break-word;
    color: var(--text-dark);
}

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

/* Header & Navigation */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-button:hover {
    background: var(--gold);
    color: var(--navy);
}

.call-button svg {
    width: 16px;
    height: 16px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo .logo-main {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo .logo-main span {
    color: var(--gold);
}

.logo .logo-tagline {
    font-size: 0.5rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

/* Hero Slider Section - Modern & Elegant */
.hero-stitched-slider {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: var(--navy);
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stitched-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.stitched-slider-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: elegantScroll 50s linear infinite;
}

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

.stitched-slider-track img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    margin: 0;
    filter: grayscale(100%) brightness(0.5);
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 4%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-content .gold-accent {
    color: var(--gold);
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Old Slider Styles (kept for other pages) */
.hero-slider {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slides {
    position: relative;
    width: 100%;
}

.slide {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    padding-right: 5%;
    padding-bottom: 5%;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: right;
    color: var(--white);
    max-width: 600px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.slide-content .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-content .cta-button:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Slick Slider Custom Styles */
.slick-prev,
.slick-next {
    width: 60px;
    height: 60px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev {
    left: 40px;
}

.slick-next {
    right: 40px;
}

.slick-prev svg,
.slick-next svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.slick-dots {
    bottom: 40px;
    z-index: 50;
}

.slick-dots li button:before {
    font-size: 14px;
    color: white;
    opacity: 0.6;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #f39c12;
    font-size: 16px;
}

/* Stats Section */
.stats-section {
    background: var(--primary-blue);
    padding: 60px 5%;
    text-align: center;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 50px 4%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Products Artistic Collage */
.products-artistic-collage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    align-items: start;
}

.product-rope-divider {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    padding: 0 1.5rem;
    margin: 0;
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-rope-divider img {
    display: block;
    width: auto;
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    opacity: 0.8;
}

.product-collage-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

.product-collage-item.hdpe-ropes {
    grid-template-columns: 1fr 1.2fr;
}

.product-collage-item.hdpe-ropes .product-visual {
    order: 2;
}

.product-collage-item.hdpe-ropes .product-info {
    order: 1;
}

.product-visual {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.95);
}

.product-collage-item:hover .product-visual img {
    transform: scale(1.05);
    filter: brightness(1);
}

.product-info {
    padding: 1rem 0;
}

.product-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    padding: 0.4rem 1rem;
    background: rgba(243, 156, 18, 0.08);
    border-left: 3px solid var(--accent-orange);
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-intro {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features-list span {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.product-features-list span::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

.text-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-link-arrow:hover {
    color: var(--accent-orange);
    gap: 0.8rem;
}

/* Industry Solutions Grid */
.industry-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.industry-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.industry-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.industry-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

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

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

.industry-card-content {
    padding: 2rem;
}

.industry-card-content h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.industry-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.text-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--accent-orange);
    gap: 0.8rem;
}

/* Rope Divider */
.rope-divider {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.rope-divider img {
    width: 100%;
    max-width: none;
    height: auto;
    opacity: 0.5;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

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

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.15;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Color Palette */
.color-palette {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.color-box {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.color-box:hover {
    transform: scale(1.1);
}

.color-red { background: #e74c3c; }
.color-blue { background: #3498db; }
.color-green { background: #2ecc71; }
.color-radium { background: #f1c40f; }
.color-orange { background: #e67e22; }
.color-yellow { background: #f39c12; }

/* Brands Section */
.brands-section {
    background-image: url('../images/Homepage/bgropes.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

/* Minimalistic Brands Grid */
.brands-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.brand-minimal-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.brand-minimal-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-dark);
    font-weight: 600;
}

.brand-minimal-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.brands-section .section-title,
.brands-section .section-subtitle,
.brands-section .brands-grid {
    position: relative;
    z-index: 2;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.brand-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    position: relative;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-blue);
    transition: background 0.3s ease;
}

.brand-card:hover::before {
    background: var(--accent-orange);
}

.brand-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.brand-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--bg-light);
}

.brand-card p {
    color: var(--text-light) !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 0;
}

/* Applications Section */
.applications-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.application-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.application-item:hover {
    background: var(--white);
    border-left-color: var(--accent-orange);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Professional Applications Grid */
.applications-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.application-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.application-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.application-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.application-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.05));
}

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

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

.application-content {
    padding: 2rem;
}

.application-content h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.application-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

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

.application-content ul li {
    color: var(--text-light);
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.application-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.application-card:hover .application-content ul li::before {
    background: var(--accent-orange);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 15px 0 0 15px;
}

.about-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    line-height: 1.8;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    min-width: 50px;
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-blue);
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.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: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer - Elegant Design */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 4% 0;
    margin-top: 0;
    border-top: 1px solid var(--gold);
}

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

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-size: 0.9rem;
    font-weight: 300;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a,
.footer-section ul li {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Think With Regency Section */
.think-regency-title {
    color: #006BB5;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.2;
    font-family: 'Arial Black', 'Impact', sans-serif;
    text-transform: uppercase;
}

/* Think Image Section */
.think-image-section {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.think-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Elegant Divider */
.elegant-divider {
    padding: 0;
    margin: 0;
    background: var(--white);
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.label-accent {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    letter-spacing: -0.02em;
}

/* Premium Products Section */
.products-premium {
    padding: 100px 0;
    background: var(--white);
}

.products-grid-elegant {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-card-elegant {
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
}

.product-card-elegant:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.1);
}

.product-number {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--navy);
    color: var(--gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.product-card-elegant h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.product-card-elegant p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.product-specs {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.product-specs span {
    font-size: 0.9rem;
    color: var(--text-medium);
    letter-spacing: 0.05em;
}

.link-arrow {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--navy);
    transform: translateX(5px);
}

/* About Premium Section */
.about-premium {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.stat-elegant {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gold);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}

.about-image {
    position: relative;
    height: 500px;
}

.image-frame {
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--border);
    z-index: -1;
}

/* Company Premium Section */
.company-premium {
    padding: 100px 0;
    background: var(--white);
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-card {
    padding: 2.5rem 2rem;
    border-left: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateX(10px);
}

.company-card h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.company-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

/* Brands Premium Section - Detailed */
.brands-premium {
    padding: 100px 0;
    background: var(--white);
}

.brands-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-card-elegant {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.brand-card-elegant:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.1);
}

.brand-card-elegant h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.brand-card-elegant p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Think With Regency Section */
.think-premium {
    padding: 80px 0;
    background: var(--navy);
    text-align: center;
}

.think-premium h2 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin: 0;
}

/* Applications Premium Section - Detailed */
.applications-premium {
    padding: 100px 0;
    background: var(--white);
}

.applications-premium .section-header h2 {
    max-width: 800px;
    margin: 0 auto;
}

.applications-detailed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.app-category {
    border-left: 1px solid var(--gold);
    padding-left: 1.5rem;
}

.app-category h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.app-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-category ul li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.5rem 0;
    font-weight: 300;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.app-category ul li:hover {
    color: var(--gold);
}

/* CTA Premium Section */
.cta-premium {
    padding: 120px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-premium h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-premium p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-elegant {
    display: inline-block;
    padding: 14px 50px;
    background: var(--navy);
    color: var(--gold);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    border: 1px solid var(--navy);
}

.cta-elegant:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-2px);
}

/* Products Page Hero - Elegant */
.products-hero-elegant {
    margin-top: 70px;
    position: relative;
    padding: 120px 0 80px;
    background: var(--navy);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/products/coverimage.png') center/cover no-repeat;
    opacity: 0.15;
    filter: grayscale(100%);
}

.hero-content-elegant {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content-elegant h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-content-elegant p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.7;
}

/* Product Detail Sections - Elegant */
.product-detail-elegant {
    padding: 100px 0;
    background: var(--white);
}

.product-detail-elegant:nth-of-type(even) {
    background: var(--bg-light);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.product-reverse .product-detail-grid {
    direction: rtl;
}

.product-reverse .product-content-elegant,
.product-reverse .product-image-elegant {
    direction: ltr;
}

.product-image-elegant img {
    width: 100%;
    height: auto;
    display: block;
}

.product-content-elegant h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.product-specs-elegant {
    margin: 2.5rem 0;
    padding: 2rem;
    border: 1px solid var(--border);
}

.product-specs-elegant h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label-elegant {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 400;
}

.spec-value-elegant {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
    text-align: right;
}

.product-features-elegant {
    margin-top: 2.5rem;
}

.product-features-elegant h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.product-features-elegant ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2rem;
}

.product-features-elegant ul li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    font-weight: 300;
    line-height: 1.7;
}

.product-features-elegant ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* About Page Hero - Elegant */
.about-hero-elegant {
    margin-top: 70px;
    position: relative;
    padding: 120px 0 80px;
    background: var(--navy);
    overflow: hidden;
}

.hero-background-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/slider33.jpg') center/cover no-repeat;
    opacity: 0.15;
    filter: grayscale(100%);
}

/* Marquee Elegant */
.marquee-elegant {
    width: 100%;
    overflow: hidden;
    background: var(--bg-light);
    padding: 0;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

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

.marquee-track img {
    height: 250px;
    width: auto;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

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

/* About Overview Elegant */
.about-overview-elegant {
    padding: 100px 0;
    background: var(--white);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 300;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

/* About Topics Elegant */
.about-topics-elegant {
    padding: 100px 0;
    background: var(--bg-light);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.topic-card-elegant {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-left: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.topic-card-elegant:hover {
    transform: translateX(5px);
    border-left-width: 4px;
}

.topic-card-elegant h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.topic-card-elegant p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.topic-card-elegant p:last-child {
    margin-bottom: 0;
}

/* Contact Page Hero - Elegant */
.contact-hero-elegant {
    margin-top: 70px;
    position: relative;
    padding: 120px 0 80px;
    background: var(--navy);
    overflow: hidden;
}

.hero-background-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Homepage/bgropes.png') center/cover no-repeat;
    opacity: 0.15;
    filter: grayscale(100%);
}

/* Contact Info Elegant */
.contact-info-elegant {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid-elegant {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.contact-card-elegant {
    text-align: center;
    padding: 2rem 1.5rem;
    border-bottom: 2px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card-elegant:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
}

.contact-card-elegant h3 {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.8rem;
    text-decoration: none;
    line-height: 1.6;
}

.contact-value:hover {
    color: var(--gold);
}

.contact-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
}

/* Contact Form Elegant */
.contact-form-elegant {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-container-elegant {
    max-width: 800px;
    margin: 0 auto;
}

.form-elegant {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border);
}

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

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

.form-elegant .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-elegant input,
.form-elegant textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-elegant input:focus,
.form-elegant textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.form-elegant button {
    width: 100%;
    margin-top: 1rem;
}

/* Map Elegant */
.map-elegant {
    padding: 100px 0;
    background: var(--white);
}

.map-frame-elegant {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border);
    overflow: hidden;
}

/* Why Contact Elegant */
.why-contact-elegant {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-grid-elegant {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card-elegant {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-top: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.why-card-elegant:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.why-number {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.why-card-elegant h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.why-card-elegant p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* CTA Buttons Group */
.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}

.cta-secondary:hover {
    background: var(--navy);
    color: var(--gold);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.bg-light {
    background: var(--bg-light);
}

.bg-white {
    background: var(--white);
}

.p-60 {
    padding: 60px 0;
}

.mb-25 {
    margin-bottom: 25px;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-artistic-collage {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-rope-divider {
        display: none;
    }

    .product-collage-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        background: var(--bg-light);
        border-radius: 12px;
        border-left: 4px solid var(--primary-blue);
    }

    .product-collage-item.hdpe-ropes {
        grid-template-columns: 1fr;
        border-left-color: var(--accent-orange);
    }

    .product-collage-item.hdpe-ropes .product-visual {
        order: 1;
    }

    .product-collage-item.hdpe-ropes .product-info {
        order: 2;
    }

    .product-visual img {
        height: 300px;
        border-radius: 8px;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .hamburger {
        display: flex;
    }

    .call-button {
        display: none;
    }

    .navbar {
        padding: 1rem 4%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.45rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
        gap: 0;
    }

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

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

    .nav-menu li a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

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

    /* Hero Sections */
    .slide-content h1,
    .about-hero h1,
    .contact-hero h1,
    .products-hero h1 {
        font-size: 1.8rem !important;
    }

    .slide-content p {
        font-size: 0.95rem !important;
    }

    .slide {
        height: 350px;
        justify-content: center;
        padding: 0 4%;
    }

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

    .about-hero,
    .contact-hero,
    .products-hero {
        padding: 30px 4% !important;
        text-align: center !important;
    }

    /* Hero Slider */
    .hero-stitched-slider {
        height: 55vh;
        min-height: 450px;
        margin-top: 65px;
    }

    .hero-content {
        padding: 0 5%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        padding: 12px 32px;
        font-size: 0.88rem;
    }

    /* Think With Regency */
    .think-regency-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    /* Section Titles */
    .section {
        padding: 35px 4%;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Stats */
    .stat-number {
        font-size: 2rem;
    }

    /* Contact & Forms */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-minimal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-premium {
        padding: 60px 0;
    }

    .products-grid-elegant {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card-elegant {
        padding: 2rem 1.5rem;
    }

    .product-card-elegant h3 {
        font-size: 1.5rem;
    }

    .product-card-elegant p {
        font-size: 0.9rem;
    }

    .product-number {
        width: 45px;
        height: 45px;
        font-size: 0.8rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .label-accent {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    /* About */
    .about-premium {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .about-image {
        height: 350px;
    }

    .image-frame::before {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }

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

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Company */
    .company-premium {
        padding: 60px 0;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-card {
        padding: 2rem 1.5rem;
    }

    .company-card h4 {
        font-size: 1.1rem;
    }

    .company-card p {
        font-size: 0.9rem;
    }

    /* Applications */
    .applications-premium {
        padding: 60px 0;
    }

    .applications-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .app-category {
        padding-left: 1.2rem;
    }

    .app-category h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .app-category ul li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    /* Brands */
    .brands-premium {
        padding: 60px 0;
    }

    .brands-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brand-card-elegant {
        padding: 2rem 1.5rem;
    }

    .brand-card-elegant h3 {
        font-size: 1.3rem;
    }

    .brand-card-elegant p {
        font-size: 0.9rem;
    }

    /* Think */
    .think-premium {
        padding: 60px 0;
    }

    .think-premium h2 {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }

    /* CTA */
    .cta-premium {
        padding: 70px 0;
    }

    .cta-premium h2 {
        font-size: 1.8rem;
    }

    .cta-premium p {
        font-size: 0.95rem;
    }

    .cta-elegant {
        padding: 12px 40px;
        font-size: 0.85rem;
    }

    /* Features */
    .features-clean-list {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .features-clean-list span::after {
        display: none;
    }

    /* Brands */
    .brands-clean-list {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    /* Applications */
    .applications-grid-pro {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .application-content {
        padding: 1.5rem;
    }

    .applications-clean-grid {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .applications-clean-grid span::after {
        display: none;
    }

    .applications-simple-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .application-simple-item {
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
    }

    /* About Sections */
    .about-minimal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Page */
    .contact-hero-elegant {
        margin-top: 65px;
        padding: 70px 0 50px;
    }

    .contact-info-elegant {
        padding: 60px 0;
    }

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

    .contact-card-elegant {
        padding: 1.8rem 1.2rem;
    }

    .contact-form-elegant {
        padding: 60px 0;
    }

    .form-elegant {
        padding: 2.5rem 2rem;
    }

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

    .map-elegant {
        padding: 60px 0;
    }

    .why-contact-elegant {
        padding: 60px 0;
    }

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

    .why-card-elegant {
        padding: 1.8rem 1.2rem;
    }

    /* About Page */
    .about-hero-elegant {
        margin-top: 65px;
        padding: 70px 0 50px;
    }

    .marquee-track img {
        height: 200px;
    }

    .about-overview-elegant {
        padding: 60px 0;
    }

    .overview-content p {
        font-size: 0.95rem;
    }

    .about-topics-elegant {
        padding: 60px 0;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .topic-card-elegant {
        padding: 2rem 1.5rem;
    }

    .topic-card-elegant h3 {
        font-size: 1.2rem;
    }

    .topic-card-elegant p {
        font-size: 0.9rem;
    }

    /* Product Page */
    .products-hero-elegant {
        margin-top: 65px;
        padding: 70px 0 50px;
    }

    .hero-content-elegant h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content-elegant p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .product-detail-elegant {
        padding: 50px 0;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-content-elegant h2 {
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }

    .product-description-elegant {
        font-size: 0.95rem;
    }

    .product-specs-elegant {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .product-specs-elegant h4 {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .spec-label-elegant,
    .spec-value-elegant {
        font-size: 0.88rem;
    }

    .product-features-elegant h4 {
        font-size: 1rem;
    }

    .product-features-elegant ul {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .product-features-elegant ul li {
        font-size: 0.9rem;
    }

    /* Brands */
    .brands-minimal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .brand-card {
        padding: 1.8rem 1.5rem;
    }

    /* Footer */
    footer {
        padding: 2.5rem 4% 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    /* Rope Dividers */
    .rope-divider {
        padding: 1rem 0;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.2rem 1rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    /* Logo */
    .logo {
        font-size: 1.5rem;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.42rem;
    }

    /* CTA Buttons */
    .cta-button {
        font-size: 0.9rem !important;
        padding: 10px 25px !important;
    }
}

@media (max-width: 480px) {
    /* Typography */
    .slide-content h1,
    .about-hero h1,
    .contact-hero h1,
    .products-hero h1 {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    /* Grids */
    .features-grid,
    .applications-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .features-clean-list span {
        font-size: 0.85rem;
    }

    .applications-clean-grid span {
        font-size: 0.88rem;
    }

    .applications-simple-grid {
        grid-template-columns: 1fr;
    }

    .application-simple-item {
        font-size: 0.88rem;
        padding: 0.9rem 1rem;
    }

    .products-clean-grid {
        gap: 1.5rem;
    }

    .product-clean-item h3 {
        font-size: 1.2rem;
    }

    .product-clean-item p {
        font-size: 0.85rem;
    }

    .brands-clean-list span {
        font-size: 1rem;
    }

    .cta-clean {
        padding: 10px 35px;
        font-size: 0.9rem;
    }

    /* Products Homepage */
    .products-premium {
        padding: 50px 0;
    }

    .products-grid-elegant {
        gap: 1.5rem;
    }

    .product-card-elegant {
        padding: 1.8rem 1.2rem;
    }

    .product-card-elegant h3 {
        font-size: 1.4rem;
    }

    .product-card-elegant p {
        font-size: 0.88rem;
    }

    .product-specs {
        padding-top: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .product-specs span {
        font-size: 0.85rem;
    }

    .product-number {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .product-detail-container {
        grid-template-columns: 1fr !important;
    }

    .product-detail-image {
        order: 1;
    }

    .product-detail-content {
        order: 2;
        padding: 1rem 0;
    }

    .product-detail-content h2 {
        font-size: 1.5rem;
    }

    .product-features-list-simple ul {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    /* Hero Sections */
    .slide {
        height: 300px;
    }

    .about-hero,
    .contact-hero,
    .products-hero {
        padding: 25px 4% !important;
    }

    /* Hero Slider */
    .hero-stitched-slider {
        height: 50vh;
        min-height: 380px;
        margin-top: 60px;
    }

    .hero-content {
        padding: 0 6%;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content .gold-accent {
        display: block;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
        line-height: 1.6;
    }

    .hero-cta {
        padding: 10px 28px;
        font-size: 0.82rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .label-accent {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    /* Products */
    .products-grid-elegant {
        gap: 1.5rem;
    }

    .product-card-elegant h3 {
        font-size: 1.5rem;
    }

    /* About */
    .about-premium {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .about-image {
        height: 280px;
    }

    .image-frame::before {
        top: 12px;
        left: 12px;
        right: -12px;
        bottom: -12px;
    }

    .about-stats {
        gap: 0.8rem;
    }

    .stat-elegant {
        padding: 1.2rem 0;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Company */
    .company-premium {
        padding: 50px 0;
    }

    .company-grid {
        gap: 1.8rem;
    }

    .company-card {
        padding: 1.8rem 1.2rem;
    }

    .company-card h4 {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }

    .company-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    /* Applications */
    .applications-premium {
        padding: 50px 0;
    }

    .applications-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .app-category {
        padding-left: 1rem;
    }

    .app-category h4 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .app-category ul li {
        font-size: 0.85rem;
        padding: 0.35rem 0;
    }

    /* Brands */
    .brands-premium {
        padding: 50px 0;
    }

    .brands-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .brand-card-elegant {
        padding: 1.8rem 1.3rem;
    }

    .brand-card-elegant h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .brand-card-elegant p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Think */
    .think-premium {
        padding: 50px 0;
    }

    .think-premium h2 {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
    }

    /* CTA */
    .cta-premium {
        padding: 60px 0;
    }

    .cta-premium h2 {
        font-size: 1.7rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta-premium p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .cta-elegant {
        padding: 11px 35px;
        font-size: 0.82rem;
    }

    /* Contact Page Mobile */
    .contact-hero-elegant {
        margin-top: 60px;
        padding: 50px 0 35px;
    }

    .contact-info-elegant {
        padding: 50px 0;
    }

    .contact-grid-elegant {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .contact-card-elegant {
        padding: 1.5rem 1rem;
    }

    .contact-card-elegant h3 {
        font-size: 0.8rem;
    }

    .contact-value {
        font-size: 1rem;
    }

    .contact-meta {
        font-size: 0.8rem;
    }

    .contact-form-elegant {
        padding: 50px 0;
    }

    .form-elegant {
        padding: 2rem 1.5rem;
    }

    .form-elegant .form-group label {
        font-size: 0.82rem;
    }

    .form-elegant input,
    .form-elegant textarea {
        padding: 11px 13px;
        font-size: 0.9rem;
    }

    .map-elegant {
        padding: 50px 0;
    }

    .map-frame-elegant iframe {
        height: 350px;
    }

    .why-contact-elegant {
        padding: 50px 0;
    }

    .why-grid-elegant {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card-elegant {
        padding: 1.5rem 1.2rem;
    }

    .why-number {
        font-size: 1.8rem;
    }

    .why-card-elegant h3 {
        font-size: 1.05rem;
    }

    .why-card-elegant p {
        font-size: 0.88rem;
    }

    .cta-buttons-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons-group .cta-elegant {
        width: 100%;
        max-width: 300px;
    }

    /* About Page Mobile */
    .about-hero-elegant {
        margin-top: 60px;
        padding: 50px 0 35px;
    }

    .marquee-track img {
        height: 180px;
    }

    .about-overview-elegant {
        padding: 50px 0;
    }

    .section-intro {
        font-size: 1rem;
    }

    .overview-content {
        padding: 0 1rem;
    }

    .overview-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .about-topics-elegant {
        padding: 50px 0;
    }

    .topics-grid {
        gap: 1.8rem;
    }

    .topic-card-elegant {
        padding: 1.8rem 1.2rem;
    }

    .topic-card-elegant h3 {
        font-size: 1.15rem;
        margin-bottom: 1.2rem;
    }

    .topic-card-elegant p {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    /* Product Page Mobile */
    .products-hero-elegant {
        margin-top: 60px;
        padding: 50px 0 35px;
    }

    .hero-content-elegant h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content-elegant p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .product-detail-elegant {
        padding: 40px 0;
    }

    .product-detail-grid {
        gap: 2rem;
    }

    .product-content-elegant h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .product-description-elegant {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .product-specs-elegant {
        margin: 1.8rem 0;
        padding: 1.3rem;
    }

    .product-specs-elegant h4,
    .product-features-elegant h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .spec-row {
        padding: 0.7rem 0;
    }

    .spec-label-elegant,
    .spec-value-elegant {
        font-size: 0.82rem;
    }

    .product-features-elegant {
        margin-top: 2rem;
    }

    .product-features-elegant ul {
        gap: 0.5rem;
    }

    .product-features-elegant ul li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }

    .product-features-elegant ul li::before {
        top: 0.65rem;
        width: 5px;
        height: 5px;
    }

    /* Think With Regency */
    .think-regency-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .think-regency-section p {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-minimal-value {
        font-size: 0.95rem;
    }

    .contact-minimal-meta {
        font-size: 0.78rem;
    }

    /* About */
    .about-minimal-text {
        font-size: 0.88rem;
    }

    /* Brands */
    .brand-minimal-text {
        font-size: 0.82rem;
    }

    .brand-card h3 {
        font-size: 1.2rem;
    }

    .brand-card p {
        font-size: 0.88rem;
    }

    /* Logo */
    .logo {
        font-size: 1.15rem;
    }

    .logo-main {
        font-size: 0.85rem;
    }

    .logo-tagline {
        font-size: 0.38rem;
        letter-spacing: 0.06em;
    }

    /* Buttons */
    .cta-button {
        font-size: 0.85rem !important;
        padding: 9px 22px !important;
    }

    /* Footer */
    footer {
        padding: 3rem 4% 0;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .footer-section ul li {
        font-size: 0.82rem;
        margin-bottom: 0.5rem;
    }

    .social-links {
        margin-top: 1.2rem;
        gap: 0.7rem;
    }

    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
        margin-top: 2.5rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    /* Padding adjustments */
    .section {
        padding: 30px 4% !important;
    }

    /* Feature items */
    .feature-item {
        padding: 1rem 0.8rem;
    }

    .feature-number {
        font-size: 2rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    /* Application cards */
    .application-content h3 {
        font-size: 1.2rem;
    }

    .application-content ul li {
        font-size: 0.88rem;
    }
}

/* ========== PRODUCTS PAGE STYLES ========== */

/* Product Cover Section */
.product-cover-section {
    position: relative;
    width: 100%;
    margin-top: 70px;
    overflow: hidden;
}

.product-cover-section img {
    width: 100%;
    height: auto;
    display: block;
}

.product-cover-text {
    position: absolute;
    right: 8%;
    top: 25%;
    transform: translateY(-50%);
    text-align: right;
}

.product-cover-text h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin: 0;
}

/* Product Detail Section */
.product-detail-section {
    padding: 80px 5%;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.product-detail-reverse .product-detail-content {
    order: 2;
}

.product-detail-reverse .product-detail-image {
    order: 1;
}

.product-detail-image {
    position: relative;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: block;
}

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

.product-detail-content {
    padding: 2rem 0;
}

.product-label {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.product-label.orange-label {
    background: var(--accent-orange);
}

.product-detail-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.product-specs-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-blue);
}

.product-specs-box h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-medium);
}

.spec-value {
    color: var(--text-light);
    text-align: right;
}

.product-features-list-simple {
    margin-top: 2rem;
}

.product-features-list-simple h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-features-list-simple ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.product-features-list-simple ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.product-features-list-simple ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
}

/* Applications Simple Grid */
.applications-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.application-simple-item {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-medium);
}

.application-simple-item:hover {
    border-left-color: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

/* ========== ABOUT PAGE IMAGE SECTIONS ========== */

.about-image-section {
    padding: 70px 5%;
}

.about-image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.about-image-reverse .about-image-container {
    direction: rtl;
}

.about-image-reverse .about-image-content,
.about-image-reverse .about-image-visual {
    direction: ltr;
}

.about-image-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.about-image-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-image-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Responsive for About Image Sections */
@media (max-width: 1024px) {
    .about-image-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-visual {
        order: 1;
    }

    .about-image-content {
        order: 2;
    }
}

/* ========== CONTACT PAGE STYLES ========== */

/* Minimalistic Contact Info */
.contact-info-minimal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.contact-minimal-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-minimal-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
}

.contact-minimal-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-minimal-value:hover {
    color: var(--primary-blue);
}

.contact-minimal-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

.contact-info-card {
    background: var(--white);
    padding: 1.8rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    border-left-color: var(--accent-orange);
}

.contact-info-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.contact-form-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

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

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

.map-container {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-modern {
        padding: 2rem 1.5rem;
    }

    .contact-info-grid {
        gap: 1.5rem;
    }

    .contact-info-minimal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========== MARQUEE SLIDER ========== */

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    padding: 0;
    margin: 0;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-content img {
    height: 300px;
    width: auto;
    object-fit: cover;
    margin-right: 0;
    display: block;
}

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

/* Pause on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-content img {
        height: 200px;
    }
}

/* ========== ABOUT TOPICS LAYOUT ========== */

/* Minimalistic About Grid */
.about-minimal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.about-minimal-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.about-minimal-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
}

.about-minimal-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.about-topics-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-topics-row-1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

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

.about-topic-card {
    background: linear-gradient(135deg, rgba(0, 107, 181, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 107, 181, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.about-topic-card:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: rgba(243, 156, 18, 0.3);
}

.about-topic-card:hover::before {
    width: 6px;
    background: var(--accent-orange);
}

.about-topic-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 107, 181, 0.1);
}

.about-topic-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--primary-blue);
    background: rgba(0, 107, 181, 0.08);
    padding: 8px;
    border-radius: 8px;
}

.about-topic-card h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.about-topic-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .about-minimal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-topics-row-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-topic-card {
        padding: 2rem;
    }
}

/* Footer Responsive - Tablet */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}
