/* ============================================
   DSTC - Dastar Supply & Trading Company
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0f2044;
  --navy-light: #1a3160;
  --gold: #c9950a;
  --gold-light: #e8b020;
  --gold-btn: #d4a017;
  --white: #ffffff;
  --light-bg: #f4f6f9;
  --gray: #6b7280;
  --dark-text: #1a1a2e;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(15,32,68,0.10);
  --shadow-lg: 0 8px 40px rgba(15,32,68,0.15);
  --radius: 10px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--dark-text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TOP BAR */
.top-bar { background: var(--navy); padding: 7px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-social a { color: #aab4cc; margin-right: 14px; font-size: 14px; transition: color var(--transition); }
.top-bar-social a:hover { color: var(--gold-light); }
.top-bar-links a { color: #aab4cc; margin-left: 22px; font-size: 13px; font-weight: 500; transition: color var(--transition); }
.top-bar-links a:hover { color: var(--gold-light); }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAVBAR */
.navbar { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(15,32,68,0.10); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-area img { height: 56px; width: auto; }
.logo-text h1 { font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: 1px; }
.logo-text p { font-size: 9.5px; color: var(--gray); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 13px; font-size: 13.5px; font-weight: 600; color: var(--navy); border-radius: 6px; transition: all var(--transition); cursor: pointer; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,149,10,0.07); }
.nav-link .arrow { font-size: 10px; transition: transform var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }

.dropdown { position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); border-top: 3px solid var(--gold); z-index: 200; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 20px; font-size: 13.5px; font-weight: 500; color: var(--navy); transition: all var(--transition); }
.dropdown a:hover { background: var(--light-bg); color: var(--gold); padding-left: 26px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 6px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* HERO */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e4080 100%); overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,32,68,0.94) 40%, rgba(15,32,68,0.60)); z-index: 1; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover no-repeat; opacity: 0.22; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { display: inline-block; background: rgba(201,149,10,0.18); border: 1px solid rgba(201,149,10,0.4); color: var(--gold-light); padding: 6px 18px; border-radius: 50px; font-size: 12.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; animation: fadeInUp 0.6s ease forwards; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 22px; animation: fadeInUp 0.7s ease 0.1s both; }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.80); max-width: 540px; margin-bottom: 36px; font-weight: 300; animation: fadeInUp 0.7s ease 0.2s both; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.3s both; }

.btn-primary { background: var(--gold-btn); color: var(--navy); padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,149,10,0.4); }
.btn-outline { background: transparent; color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 15px; border: 2px solid rgba(255,255,255,0.45); cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.scroll-dot { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.3); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.scroll-dot::before { content: ''; width: 4px; height: 9px; background: var(--gold-light); border-radius: 3px; animation: scrollBounce 1.8s infinite; }

/* STATS BAR */
.stats-bar { background: var(--navy); padding: 32px 0; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 10px 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 400; }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.section-header h2 span { color: var(--gold); }
.section-divider { width: 64px; height: 3px; background: var(--gold); margin: 0 auto 16px; border-radius: 2px; }
.section-header p { font-size: 15.5px; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* WHY CHOOSE */
.why-section { padding: 96px 0; background: var(--light-bg); }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 34px 20px 28px; text-align: center; box-shadow: var(--shadow); transition: all var(--transition); border-bottom: 3px solid transparent; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.feature-icon { width: 66px; height: 66px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; color: var(--white); transition: background var(--transition); }
.feature-card:hover .feature-icon { background: var(--gold); }
.feature-card h3 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* HOW WE WORK */
.how-section { padding: 96px 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 33px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--gold), var(--navy)); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num { width: 66px; height: 66px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; color: var(--white); border: 4px solid var(--white); box-shadow: var(--shadow); transition: all var(--transition); }
.step-card:hover .step-num { background: var(--gold); transform: scale(1.08); }
.step-label { font-size: 10.5px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.step-card h3 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.step-card p { font-size: 12.5px; color: var(--gray); line-height: 1.55; }

/* GENERAL ORDER */
.general-section { padding: 72px 0; background: var(--light-bg); }
.general-inner { background: var(--navy); border-radius: 16px; padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.general-inner h2 { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.general-inner h2 span { color: var(--gold-light); }
.general-inner p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.75; }
.general-list { display: flex; flex-direction: column; gap: 14px; }
.general-list-item { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 18px; }
.general-list-item .icon { font-size: 22px; flex-shrink: 0; }
.general-list-item p { font-size: 13.5px; color: rgba(255,255,255,0.80); font-weight: 500; }

/* PRODUCTS */
.products-section { padding: 96px 0; background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 48px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--border); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img { height: 190px; background: linear-gradient(135deg, #d0d8e8 0%, #b8c5dd 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--navy); }
.product-img .p-icon { font-size: 52px; }
.product-img .p-label { font-size: 11px; margin-top: 8px; font-weight: 600; color: var(--navy-light); letter-spacing: 0.5px; text-transform: uppercase; }
.product-info { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; }
.product-info h3 { font-size: 14px; font-weight: 700; color: var(--navy); }
.product-arrow { width: 32px; height: 32px; background: var(--gold-btn); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; flex-shrink: 0; transition: all var(--transition); }
.product-card:hover .product-arrow { background: var(--navy); }

.inquiry-box { background: var(--light-bg); border-radius: var(--radius); padding: 36px; text-align: center; border-left: 4px solid var(--gold); max-width: 500px; margin: 0 auto; }
.inquiry-box .icon { font-size: 32px; margin-bottom: 12px; }
.inquiry-box h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.inquiry-box p { font-size: 14px; color: var(--gray); margin-bottom: 14px; }
.inquiry-box a { color: var(--gold); font-weight: 700; font-size: 15px; transition: color var(--transition); }
.inquiry-box a:hover { color: var(--navy); }

/* OFFICES */
.offices-section { padding: 96px 0; background: var(--light-bg); }
.offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.office-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px 20px; text-align: center; transition: all var(--transition); }
.office-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.office-card.head { border-color: var(--gold); background: #fffdf4; }
.office-icon { font-size: 28px; color: var(--gold); margin-bottom: 14px; }
.office-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.office-badge { display: inline-block; background: var(--light-bg); color: var(--gray); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 12px; border-radius: 50px; margin-bottom: 14px; }
.office-card.head .office-badge { background: var(--gold-btn); color: var(--navy); }
.office-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ABOUT */
.about-section { padding: 96px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); height: 440px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; }
.about-img-icon { font-size: 100px; opacity: 0.15; color: var(--white); }
.about-img-badge { position: absolute; bottom: 24px; left: 24px; background: var(--gold-btn); color: var(--navy); padding: 14px 22px; border-radius: 10px; font-weight: 700; font-size: 15px; }
.about-img-badge span { display: block; font-size: 11px; font-weight: 500; opacity: 0.8; }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 18px; line-height: 1.2; }
.about-content h2 span { color: var(--gold); }
.about-content p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 18px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; }
.value-icon { width: 36px; height: 36px; background: rgba(201,149,10,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.value-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.value-item p { font-size: 12.5px; color: var(--gray); }

/* EVENTS */
.events-section { padding: 96px 0; background: var(--light-bg); }
.events-placeholder { text-align: center; padding: 80px 40px; background: var(--white); border-radius: 14px; border: 2px dashed var(--border); }
.events-placeholder .icon { font-size: 56px; margin-bottom: 18px; }
.events-placeholder h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.events-placeholder p { color: var(--gray); font-size: 15px; }

/* FEEDBACK */
.feedback-section { padding: 96px 0; background: var(--white); }
.feedback-form-wrap { max-width: 660px; margin: 0 auto; background: var(--white); border-radius: 14px; padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-top: 20px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border: 2px solid var(--border); border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--dark-text); transition: border-color var(--transition); outline: none; background: var(--white); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.star-rating { display: flex; gap: 8px; margin-top: 4px; }
.star-rating span { font-size: 30px; color: #ddd; cursor: pointer; transition: color var(--transition); }
.star-rating span.active, .star-rating span:hover { color: var(--gold); }
.btn-submit { background: var(--gold-btn); color: var(--navy); padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: all var(--transition); display: flex; align-items: center; gap: 8px; width: 100%; justify-content: center; margin-top: 24px; }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* CUSTOMER SERVICE */
.cs-section { padding: 96px 0; background: var(--light-bg); }
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cs-card { background: var(--white); border: 2px solid var(--border); border-radius: 12px; padding: 36px 26px; text-align: center; transition: all var(--transition); }
.cs-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.cs-icon { font-size: 42px; margin-bottom: 18px; }
.cs-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.cs-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.cs-link { color: var(--gold); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.cs-link:hover { gap: 10px; }

/* POLICIES */
.policies-section { padding: 96px 0; background: var(--white); }
.policies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.policy-card { background: var(--white); border-radius: 12px; padding: 32px; box-shadow: var(--shadow); border-left: 4px solid var(--navy); transition: all var(--transition); }
.policy-card:hover { border-left-color: var(--gold); transform: translateX(4px); }
.policy-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.policy-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* JOBS */
.jobs-section { padding: 96px 0; background: var(--light-bg); }
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card { background: var(--white); border: 2px solid var(--border); border-radius: 12px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: all var(--transition); }
.job-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.job-info h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag { background: var(--light-bg); color: var(--gray); padding: 3px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.job-tag.open { background: rgba(34,197,94,0.1); color: #16a34a; }
.apply-btn { background: var(--navy); color: var(--white); padding: 11px 26px; border-radius: 8px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all var(--transition); white-space: nowrap; display: inline-block; }
.apply-btn:hover { background: var(--gold-btn); color: var(--navy); }

/* TENDERS */
.tenders-section { padding: 96px 0; background: var(--white); }
.tenders-table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
thead { background: var(--navy); }
thead th { padding: 16px 20px; text-align: left; color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
tbody tr:hover { background: #f8faff; }
tbody td { padding: 14px 20px; font-size: 13.5px; color: var(--dark-text); }
.status-badge { display: inline-block; padding: 3px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.status-open { background: rgba(34,197,94,0.1); color: #16a34a; }
.status-closed { background: rgba(239,68,68,0.1); color: #dc2626; }
.status-upcoming { background: rgba(234,179,8,0.1); color: #a16207; }

/* VIRTUAL TOUR */
.tour-section { padding: 96px 0; background: var(--light-bg); }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tour-card { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); cursor: pointer; }
.tour-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.tour-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.tour-label { background: var(--white); padding: 16px 20px; font-weight: 700; font-size: 14.5px; color: var(--navy); }

/* MEMORIES */
.memories-section { padding: 96px 0; background: var(--white); }
.memories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.memory-card { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 10px; height: 190px; display: flex; align-items: center; justify-content: center; font-size: 44px; color: rgba(255,255,255,0.3); transition: all var(--transition); cursor: pointer; }
.memory-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); color: rgba(255,255,255,0.6); }

/* CONTACT PAGE */
.contact-section { padding: 96px 0; background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-icon { width: 46px; height: 46px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); flex-shrink: 0; }
.contact-info-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p { font-size: 13.5px; color: var(--gray); }
.contact-form-wrap { background: var(--white); border-radius: 14px; padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }

/* FOOTER */
footer { background: var(--navy); padding: 64px 0 0; color: rgba(255,255,255,0.75); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,0.65); transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: 0.4px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item .fc-icon { color: var(--gold); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item p { font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.40); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero h1 span { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.70); font-size: 16px; max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.50); position: relative; z-index: 1; }
.breadcrumb a { color: var(--gold-light); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .memories-grid { grid-template-columns: repeat(3, 1fr); }
  .general-inner { grid-template-columns: 1fr; padding: 36px; }
  .tour-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 6px; }
  .hamburger { display: flex; }
  .nav-menu { position: fixed; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; gap: 4px; box-shadow: var(--shadow-lg); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; z-index: 999; align-items: stretch; }
  .nav-menu.open { max-height: 80vh; overflow-y: auto; }
  .nav-link { width: 100%; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0; background: var(--light-bg); border-radius: 8px; border-top: none; }
  .nav-item.open .dropdown { max-height: 300px; padding: 4px 0; }
  .hero { min-height: 70vh; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr 1fr; }
  .memories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .feedback-form-wrap { padding: 28px 20px; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .offices-grid { grid-template-columns: 1fr; }
  .memories-grid { grid-template-columns: repeat(2, 1fr); }
}
