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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* ===============================================
   TOP BAR
   =============================================== */
.top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 3px solid #d4af37;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-left: 20px; /* Add this line to reduce left padding */
}

.top-bar-center {
    display: flex;
    flex-direction: column; /* Changed from row to column */
    align-items: center;
    gap: 8px; /* Reduced gap for vertical spacing */
    justify-content: center;
    flex: 1;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Add this new section for the logo in top bar */
.top-bar-left .logo {
    margin-right: 30px;
    margin-left: -15px;
    padding-left: 0;
    order: -1; /* This puts the logo first in the flex layout */
}

.top-bar-left .logo img {
    height: 80px;
    width: auto;
}

.address {
    font-size: 18px;
    color: #666;
    line-height: 1.4;
    text-align: canter;
}

.phone-large {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    text-align: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-menu-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.top-menu-link:hover {
    color: #d4af37;
}

.cta-button-small {
    background: #d4af37;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button-small:hover {
    background: #b8941f;
}

/* ===============================================
   HEADER
   =============================================== */
.header {
    background: white;
    position: relative;
    z-index: 100;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Changed from space-between to center */
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.mobile-phone {
    display: none;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center; /* Add this line */
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 20px;  /* Add this line - increase from default ~16px */
    transition: color 0.3s;
}

.nav a:hover {
    color: #d4af37;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 12px;
}

/* DROPDOWN MENU - FORCE VERTICAL LAYOUT */
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    min-width: 200px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
}

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

.dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
    flex: none !important;
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 15px !important;
    border-bottom: 1px solid #eee !important;
    color: #333 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    font-weight: normal !important;
    width: 100% !important;
    box-sizing: border-box !important;
    float: none !important;
}

.dropdown-menu a:hover {
    background: #f8f9fa !important;
    color: #d4af37 !important;
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 500px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
}

.mobile-nav a:hover {
    background: #f8f9fa;
    color: #d4af37;
}

.mobile-dropdown-menu {
    display: none;
    background: #f8f9fa;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu a {
    padding-left: 40px;
    font-size: 14px;
}

.mobile-menu-section {
    padding: 15px 20px;
}

.mobile-menu-section strong {
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
}

.mobile-menu-section a {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 0;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
                url('../images/ROYAL-HERO-1-2048x1080.webp') center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.hero-text-block {
    background: rgba(0,0,0,0.3);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    backdrop-filter: blur(2px);
    position: absolute;
    left: 150px;
    top: 50%;
    transform: translateY(-50%);
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 20px;
    margin: 0 0 30px 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.cta-button {
    background: #d4af37;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* ===============================================
   TEXT BLOCKS
   =============================================== */
.text-block-1 {
    background: linear-gradient(135deg, #e8e8e8, #d5d5d5);
    padding: 60px 0;
    text-align: center;
}

.text-block-1 h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.text-block-1 p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.text-block-2 {
    background: linear-gradient(135deg, #d5d5d5, #c8c8c8);
    padding: 60px 0;
    text-align: center;
}

.text-block-2 h2 {
    font-size: 32px;
    color: #333;
    margin: 0;
}

/* ===============================================
   STATISTICS SECTION - UPDATED CENTER ALIGNMENT
   =============================================== */
.stats-section {
    background: url('../images/LAZA-QUARTZ-IMAGE-5.webp') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    margin: 0 20px;
    border-radius: 15px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
}

.stats-text {
    color: #333;
    text-align: center;
}

.stats-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.stats-text h3 {
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 20px;
    text-align: center;
}

.stats-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 72px;
    font-weight: bold;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    text-align: center;
}

.stats-image {
    text-align: right;
}

.stats-image img {
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    transform: scale(2) translateX(-100px);
    transform-origin: center;
}

/* ===============================================
   MATERIAL SELECTOR SECTION
   =============================================== */
.material-selector {
    padding: 60px 0 5px 0 !important;
    background: #f8f9fa;
}

.material-selector h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    background: #d5d5d5;
    padding: 20px 0;
    border-radius: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Add after the material-selector section */
.material-to-table-connector {
    text-align: center;
    padding: 20px 0;
    background: #f8f9fa;
}

.connector-arrow {
    font-size: 36px;
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
}

.connector-text {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

.sections-bridge {
    background: linear-gradient(to bottom, #f8f9fa, white);
    padding: 30px 0;
    text-align: center;
}


.material-display {
    width: 100vw;  /* Full viewport width */
    margin-left: calc(50% - 50vw);  /* Break out of container */
    margin-right: calc(50% - 50vw);
    padding: 0 10%;  /* 10% padding on left and right = 80% content width */
    box-sizing: border-box;
}

.material-image-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.material-image-container img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.material-buttons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.material-btn {
    background: rgba(255,255,255,0.9);
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.material-btn:hover {
    background: rgba(212,175,55,0.9);
    color: white;
    transform: translateY(-2px);
}

.material-btn.active {
    background: #d4af37;
    color: white;
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* ===============================================
   TWO-COLUMN SLIDER SECTION
   =============================================== */
.slider-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.slider-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column: Image Slider */
.slider-column-left {
    width: 100%;
    margin-top: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    height: 525px;
}

.image-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* SIMPLE FADE SLIDER */
.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.image-slide.active {
    opacity: 1;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Slider Under Images */
.text-slider {
    max-width: 100%;
    margin-top: 30px;
    min-height: 120px;
    position: relative;
}

.text-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-out;
    text-align: center;
    padding: 0 10px;
}

.text-slide.active {
    opacity: 1;
}

.text-slide h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.text-slide p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background: #d4af37;
}

.slider-dot:hover {
    background: #b8941f;
}

/* Right Column: Static Text Content */
.slider-column-right {
    padding-left: 20px;
}

.slider-column-right h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slider-column-right h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 30px 0 15px 0;
}

.slider-column-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.slider-column-right ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.slider-column-right li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.slider-column-right .cta-button {
    margin-top: 25px;
    background: #d4af37;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease;
}

.slider-column-right .cta-button:hover {
    background: #b8941f;
}

/* ===============================================
   MATERIAL COMPARISON TABLE SECTION
   =============================================== */
.comparison-table-section {
    padding: 5px 0 20px 0 !important; /* Reduced bottom padding from 80px to 20px */
    background: white;
}

.comparison-table-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.table-container {
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.table-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    background-color: #f8f9fa;
    margin: 0;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
}

/* PROPER HTML TABLE - AI READABLE */
.comparison-table-section table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    font-size: 18px;
}

/* HEADER STYLING */
.comparison-table-section thead th {
    background-color: #343a40;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 15px 12px;
    font-size: 20px;
    border: 1px solid #dee2e6;
}

/* STICKY FIRST COLUMN */
.comparison-table-section th:first-child,
.comparison-table-section td:first-child {
    position: sticky;
    left: 0;
    background-color: #a8aaab;
    font-weight: bold;
    z-index: 10;
    border-right: 2px solid #dee2e6;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.comparison-table-section thead th:first-child {
    background-color: #495057;
}

/* DATA CELLS */
.comparison-table-section tbody td {
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    vertical-align: middle;
    background-color: white;
}

/* HOVER EFFECTS */
.comparison-table-section tbody tr:hover td {
    background-color: #f1f3f4;
}

.comparison-table-section tbody tr:hover td:first-child {
    background-color: #9a9c9d;
}

/* ===============================================
   TRUST SECTION - BLOCK STYLE LIKE MATERIAL HEADER
   =============================================== */
.trust-section {
    padding: 20px 0 80px 0 !important; /* Reduced top padding from 80px to 20px */
    background: #f8f9fa;
}

.trust-content {
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    color: #333;
    margin: 0 auto 40px auto;
    background: #d5d5d5;
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 1200px;
    line-height: 1.8;
}

.trust-content p {
    margin: 0;
    text-align: justify;
    text-align-last: center;
}

/* ===============================================
   4-STEP PROCESS SECTION
   =============================================== */
.process-section {
    background: url('../images/4-step-10-day.webp') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.process-container {
    max-width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.process-header h2 {
    font-size: 48px;
    font-weight: normal;
    color: #666;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.process-step {
    text-align: center;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(2px);
    min-height: 420px;
}

.step-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

.step-header {
    margin-bottom: 10px;
}

.step-header h3 {
    font-size: 38px;
    font-weight: bold;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.step-content h4 {
    font-size: 26px;
    font-weight: bold;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.step-content p {
    font-size: 22px;
    line-height: 1.4;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.process-benefits {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-benefits h3 {
    font-size: 38px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list p {
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.benefits-list strong {
    color: white;
    font-weight: bold;
}

.process-conclusion p {
    font-size: 24px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* ===============================================
   SEO CONTENT SECTION
   =============================================== */
.seo-content-section {
    background: #f8f9fa;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.seo-container {
    max-width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}

.seo-content {
    background: #d5d5d5;
    padding: 40px 50px;
    border-radius: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.seo-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

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

/* ===============================================
   WHY CHOOSE ROYAL SECTION
   =============================================== */
.why-choose-section {
    background: #f8f9fa;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.why-choose-container {
    max-width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}

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

.why-choose-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.reason-card {
    background: #d5d5d5;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.reason-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.reason-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.why-choose-conclusion {
    text-align: center;
    background: #d5d5d5;
    border-radius: 15px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-conclusion h3 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.why-choose-conclusion p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    background: linear-gradient(135deg, #2c3e50, #1a1a1a);
    color: white;
    padding: 50px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.company-details address {
    font-style: normal;
    margin-bottom: 15px;
    line-height: 1.5;
}

.phone-footer a {
    color: #d4af37;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.hours {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.social-icon {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-locations h3 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 10px;
}

.locations-divider {
    height: 3px;
    background: #d4af37;
    width: 280px;
    margin-bottom: 20px;
}

.cities-list {
    list-style: none;
    columns: 2;
    gap: 20px;
}

.cities-list li {
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

/* ===============================================
   STRATEGIC CTA BUTTONS
   =============================================== */
.strategic-cta {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
}

.cta-primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

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

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

.cta-subtext {
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
}

/* Text Invitation Styles */
.text-invitation {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #333;
}

.text-invitation strong {
    color: #d4af37;
    font-weight: bold;
}

.cta-after-table {
    padding: 20px 0 20px 0 !important; /* Reduced bottom padding from 60px to 20px */
    background: #f8f9fa;
}

.cta-after-table .cta-subtext {
    color: #666;
}

/* ===============================================
   FLOATING CTA BUTTON - RESPONSIVE VERSIONS
   =============================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: gentle-pulse 2s infinite;
}

.floating-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #b8941f, #a67c1a);
}

.floating-btn .icon {
    font-size: 20px;
}

.floating-btn .text-main {
    font-size: 16px;
    font-weight: bold;
}

.floating-btn .text-sub {
    font-size: 12px;
    opacity: 0.9;
    font-weight: normal;
}

/* Desktop Version - Default Display */
.desktop-floating {
    display: flex;
}

/* Mobile Version - Hidden by Default */
.mobile-floating {
    display: none;
}

/* Gentle pulsing animation */
@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===============================================
   MODAL OVERLAY & FORM STYLES - ADDED TO EXISTING CSS
   =============================================== */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 2001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2);
}

/* Form Header */
.form-header {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    padding: 20px 25px;
    text-align: center;
    color: white;
    position: relative;
}

.form-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Form Content */
.form-content {
    padding: 25px 20px;
}

.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form Row for side-by-side fields */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Form Groups */
.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover {
    border-color: #b8941f;
}

/* Required field indicator */
.required {
    color: #d4af37;
    font-weight: bold;
}

/* Checkbox Button Group */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-option:hover {
    border-color: #b8941f;
    background: #f8f9fa;
}

.checkbox-option.selected {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.checkbox-option input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #d4af37;
}

.checkbox-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f, #d4af37);
}

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

/* Form Footer */
.form-footer {
    background: #f8f9fa;
    padding: 20px 25px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.form-footer p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Loading state */
.submit-btn.loading {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading:hover {
    transform: none;
    box-shadow: none;
}

/* Success animation */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.form-success {
    animation: successPulse 0.6s ease-in-out;
}

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

/* ===============================================
   MOBILE RESPONSIVE
   =============================================== */
@media (max-width: 768px) {
    /* Hide desktop elements */
    .top-bar {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    /* Show mobile elements */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .mobile-phone {
        display: block !important;
        flex: 1;
        text-align: center;
    }
    
    .mobile-phone a {
        color: #d4af37;
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
    }
    
    /* Hero section mobile responsive - HIDE HERO BUTTON ON MOBILE */
    .hero-text-block {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto;
        max-width: 90%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Hide hero CTA button on mobile to avoid duplicate with floating button */
    .hero .strategic-cta {
        display: none !important;
    }
    
    /* Text blocks responsive */
    .text-block-1, .text-block-2 {
        padding: 40px 0;
    }
    
    .text-block-1 h2, .text-block-2 h2 {
        font-size: 24px;
    }
    
    .text-block-1 p {
        font-size: 16px;
    }
    
    /* Two-column layout responsive */
    .slider-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slider-column-right {
        padding-left: 0;
        text-align: center;
    }
    
    .image-slider {
        height: 250px;
        margin-bottom: 30px;
    }
    
    /* Statistics responsive */
    .stats-section {
        margin: 0 10px;
        padding: 60px 0;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }
    
    .stats-text {
        text-align: center;
    }
    
    .stats-text h2 {
        font-size: 28px;
    }
    
    .stats-text h3 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stats-image {
        display: none !important;
    }
    
    .stats-image img {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Material selector responsive */
    .material-selector h2 {
        font-size: 28px;
        padding: 15px 0;
    }
    
    .material-image-container img {
        height: 300px;
    }
    
    .material-buttons {
        position: static;
        transform: none;
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .material-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Trust section responsive */
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-content {
        padding: 20px 30px;
        margin: 0 20px 40px 20px;
    }
    
    .trust-content p {
        font-size: 16px;
        text-align: center;
        text-align-last: center;
    }
    
    /* Process section mobile responsive */
    .process-section {
        padding: 40px 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .process-container {
        padding: 0 15px;
    }
    
    .process-header h2 {
        font-size: 32px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .process-step {
        padding: 20px 15px;
        min-height: 380px;
    }
    
    .step-image img {
        height: 240px;
    }
    
    .step-header h3 {
        font-size: 32px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    
    .step-content h4 {
        font-size: 22px;
        margin-bottom: 10px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    .step-content p {
        font-size: 18px;
        line-height: 1.3;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    .process-benefits {
        padding: 20px;
    }
    
    .process-benefits h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    
    .benefits-list p {
        font-size: 18px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    .benefits-list strong {
        color: white;
        font-weight: bold;
    }
    
    .process-conclusion p {
        font-size: 20px;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    /* SEO Content section responsive */
    .seo-content-section {
        padding: 40px 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .seo-container {
        padding: 0 15px;
    }
    
    .seo-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .seo-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .seo-content p {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    /* Why Choose Royal section responsive */
    .why-choose-section {
        padding: 40px 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .why-choose-container {
        padding: 0 15px;
    }
    
    .why-choose-header h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .reason-card {
        padding: 25px 20px;
    }
    
    .reason-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .reason-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .reason-card p {
        font-size: 15px;
    }
    
    .why-choose-conclusion {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .why-choose-conclusion h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .why-choose-conclusion p {
        font-size: 18px;
    }
    
    /* Footer responsive - UPDATED WITH 25% SMALLER FONTS */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;        /* Reduced from 2rem (32px) by 25% = 24px */
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        font-size: 21px;          /* Reduced from 28px by 25% */
        margin-bottom: 12px;
    }
    
    .company-details address {
        font-size: 24px;          /* Reduced from 26px by 25% = 19.5px rounded to 20px */
    }
    
    .contact-info p {
        font-size: 20px;          /* Reduced from 26px by 25% = 19.5px rounded to 20px */
    }
    
    .phone-footer a {
        font-size: 29px;          /* Reduced from 38px by 25% = 28.5px rounded to 29px */
    }
    
    .hours {
        font-size: 20px;          /* Reduced from 26px by 25% = 19.5px rounded to 20px */
    }
    
    .footer-bottom {
        font-size: 20px;          /* Reduced from 26px by 25% = 19.5px rounded to 20px */
    }
    
    .cities-list li {
        font-size: 18px;          /* Reduced from 24px by 25% */
    }
    
    .footer-locations h3 {
        font-size: 20px;          /* Reduced from 26px by 25% = 19.5px rounded to 20px */
    }
    
    .social-icon {
        font-size: 27px;          /* Reduced from 36px by 25% */
    }
    
    .cities-list {
        columns: 2;
    }
    
    .footer-map iframe {
        height: 200px;
    }
    
    /* Strategic CTA Buttons Mobile Responsive */
    .cta-primary {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .text-invitation {
        padding: 15px 20px;
        margin: 20px 10px;
    }
    

    
    /* Responsive for comparison table */
    .comparison-table-section table {
        font-size: 16px;
    }
    .comparison-table-section thead th {
        font-size: 18px;
        padding: 10px 8px;
    }
    .comparison-table-section tbody td {
        padding: 8px 12px;
    }
    
    /* Mobile Responsive Floating Button */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 16px 20px;
        font-size: 14px;
        border-radius: 45px;
    }
    
    .floating-btn .text-main {
        font-size: 14px;
    }
    
    .floating-btn .text-sub {
        font-size: 11px;
    }
    
    /* Show mobile version, hide desktop version */
    .desktop-floating {
        display: none !important;
    }
    
    .mobile-floating {
        display: flex !important;
    }
    
    /* Modal Mobile */
    .modal-overlay {
        padding: 10px;
    }

    .form-header {
        padding: 15px 20px;
    }

    .form-header h2 {
        font-size: 1.3rem;
    }

    .form-content {
        padding: 20px 15px;
    }

    .form-footer {
        padding: 15px;
    }

    .form-group input {
        padding: 8px 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Mobile: Stack form rows */
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .checkbox-options {
        flex-direction: column;
        gap: 10px;
    }

    .modal-close {
        top: 10px;
        right: 15px;
    }
}