* {
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
.rtl {
  direction: rtl;
  text-align: right;
}

:root {
    --gold-primary: #C7A24F;
    --gold-light: #E4CA7A;
    --gold-dark: #A68741;
    --cream: #FAF9F6;
    --dark-bg: #0F1419;
    --dark-secondary: #1A1F26;
    --dark-tertiary: #252B33;
    --text-light: #FFFFFF;
    --text-gold: #E4CA7A;
    --text-dark: #2c2c2c;
    --text-muted: #B8B8B8;
    --shadow-gold: 0 20px 60px rgba(199, 162, 79, 0.3);
    --shadow-gold-lg: 0 30px 80px rgba(199, 162, 79, 0.4);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(199, 162, 79, 0.3),
                    0 0 40px rgba(199, 162, 79, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(199, 162, 79, 0.5),
                    0 0 60px rgba(199, 162, 79, 0.2);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes rotateRays {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}
html[lang="ar"], 
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}



.hf-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199, 162, 79, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #0F1419;
  letter-spacing: 1px;
}
.brand-text {
  position: relative;
}
.brand-dot {
  color: #C7A24F;
  font-size: 2rem;
  margin-left: 4px;
  animation: pulse 2s infinite;
}
.hf-navbar .nav-link {
  color: #111827 !important;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hf-navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #C7A24F;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.hf-navbar .nav-link:hover::before {
  width: 70%;
}
.hf-navbar .nav-link:hover {
  color: #C7A24F !important;
}
.dropdown-menu {
  border: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.1), rgba(199, 162, 79, 0.05));
  color: var(--gold-primary);
}
html[lang="ar"] .navbar-collapse {
  text-align: right;
}
html[lang="ar"] .dropdown-menu {
  right: auto;
  left: 0;
  text-align: right;
}
html[lang="ar"] .dropdown-menu-right {
  right: 0 !important;
  left: auto !important;
}
html[lang="ar"] .mr-1,
html[dir="rtl"] .mr-1 {
    margin-right: 0 !important;
    margin-left: 0.25rem !important;
}
html[lang="ar"] .ml-auto,
html[dir="rtl"] .ml-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}
.navbar-nav .dropdown-toggle::after {
    margin-left: 0;
    margin-right: .255em;
}



.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 40px 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, #FFFFFF 50%, var(--cream) 100%);
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(199, 162, 79, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(228, 202, 122, 0.1) 0%, transparent 50%);
}
.golden-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(199, 162, 79, 0.05) 30deg,
        transparent 60deg,
        transparent 120deg,
        rgba(228, 202, 122, 0.03) 150deg,
        transparent 180deg,
        transparent 240deg,
        rgba(199, 162, 79, 0.05) 270deg,
        transparent 300deg
    );
    animation: rotateRays 60s linear infinite;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 1.2s ease-out;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 30px;
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    margin-bottom: 2.5rem;
    background: rgba(199, 162, 79, 0.1);
    backdrop-filter: blur(10px);
}
.badge-line {
    width: 30px;
    height: 1px;
    background: var(--gold-primary);
}
.badge-text {
    color: var(--gold-dark);
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 600;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.title-word {
    position: relative;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    animation-delay: calc(var(--i) * 0.2s);
}
.title-word:nth-child(1) { --i: 0; }
.title-word:nth-child(2) { --i: 1; }
.title-word:nth-child(3) { --i: 2; }
.title-word:nth-child(4) { --i: 3; }
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 2.5rem auto;
}
.hero-divider::before,
.hero-divider::after {
    content: '';
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.divider-ornament {
    font-size: 1.2rem;
    color: var(--gold-primary);
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 5rem;
}
.cta-button {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.cta-button:hover::before {
    left: 100%;
}
.cta-button.primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-bg);
    box-shadow: 0 10px 40px rgba(199, 162, 79, 0.4);
}
.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(199, 162, 79, 0.6);
}
.cta-button.secondary {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-primary);
}
.cta-button.secondary:hover {
    background: rgba(199, 162, 79, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199, 162, 79, 0.3);
}
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}
.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(199, 162, 79, 0.2);
}
.hero-feature:hover .feature-icon {
    background: var(--gold-primary);
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(199, 162, 79, 0.4);
}
.feature-text h3 {
    color: var(--gold-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.feature-text p {
    color: #666;
    font-size: 0.9rem;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gold-primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    margin: 15px auto 0;
    position: relative;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gold-light);
    animation: scroll 1.5s infinite;
}



.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-label {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}
.section-label.light {
    color: var(--gold-light);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title.light {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--gold-light) 50%, var(--text-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem 0;
}
.ornament-line {
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
}
.ornament-diamond {
    font-size: 1.2rem;
    color: var(--gold-primary);
}
.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}
.section-subtitle.light {
    color: var(--text-gold);
}



.services {
    padding: 120px 40px;
    background: var(--cream);
    position: relative;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}
.service-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid rgba(199, 162, 79, 0.2);
    cursor: pointer;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 162, 79, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(199, 162, 79, 0.3);
    border-color: var(--gold-primary);
}
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 162, 79, 0.1), transparent);
    transition: left 0.6s ease;
}
.service-card:hover .card-shine {
    left: 100%;
}
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(199, 162, 79, 0.15) 0%, rgba(228, 202, 122, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    position: relative;
    filter: drop-shadow(0 5px 15px rgba(199, 162, 79, 0.3));
}
.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}
.service-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}
.service-features li {
    padding: 0.8rem 0;
    color: #555;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid rgba(199, 162, 79, 0.2);
    transition: all 0.3s ease;
}
.service-features li:last-child {
    border-bottom: none;
}
.service-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.9rem;
}
.service-features li:hover {
    padding-left: 35px;
    color: var(--gold-dark);
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.service-link:hover {
    gap: 15px;
    color: var(--gold-light);
}
.service-link svg {
    transition: transform 0.3s ease;
}
.service-link:hover svg {
    transform: translateX(5px);
}



.about {
    padding: 120px 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--cream) 50%, #FFFFFF 100%);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(199, 162, 79, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(228, 202, 122, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}
.about-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: #FFFFFF;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(199, 162, 79, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(199, 162, 79, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.about-card:hover::before {
    opacity: 1;
}
.about-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(199, 162, 79, 0.3);
}
.about-icon-wrapper {
    color: var(--gold-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.4s ease;
}
.about-card:hover .about-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}
.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.about-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}



.testimonials {
    padding: 120px 40px;
    background: var(--cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}
.testimonial-card {
    background: #FFFFFF;
    padding: 3.5rem;
    border-radius: 24px;
    border: 2px solid rgba(199, 162, 79, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 162, 79, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.testimonial-card:hover::before {
    opacity: 1;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(199, 162, 79, 0.3);
}
.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(199, 162, 79, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}
.testimonial-stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
}
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #555;
    font-style: italic;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 2rem;
    border-top: 1px solid rgba(199, 162, 79, 0.2);
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(199, 162, 79, 0.4);
}
.author-info h4 {
    color: var(--gold-dark);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.author-info p {
    color: #666;
    font-size: 0.95rem;
}



.contact {
    padding: 120px 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--cream) 50%, #FFFFFF 100%);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(199, 162, 79, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(228, 202, 122, 0.05) 0%, transparent 50%);
    pointer-events: none;
}



.contact-form {
    background: #FFFFFF;
    padding: 3.5rem;
    border-radius: 24px;
    border: 2px solid rgba(199, 162, 79, 0.3);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}
.form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(199, 162, 79, 0.2);
}
.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.form-header p {
    color: #666;
    font-size: 1.05rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--cream);
    border: 2px solid rgba(199, 162, 79, 0.3);
    border-radius: 12px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(199, 162, 79, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(102, 102, 102, 0.5);
}
.form-group select {
    cursor: pointer;
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(199, 162, 79, 0.4);
    position: relative;
    overflow: hidden;
}
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.submit-button:hover::before {
    left: 100%;
}
.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(199, 162, 79, 0.6);
}
.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.form-message {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
}
.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #4caf50;
    border: 2px solid rgba(76, 175, 80, 0.5);
    display: block;
}
.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #f44336;
    border: 2px solid rgba(244, 67, 54, 0.5);
    display: block;
}



.hf-footer {
  color: #000;
  background: rgba(85, 87, 88, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E6EB;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.hf-footer a { 
  color: #000; 
  text-decoration: none; 
}
.hf-footer a:hover { 
  color: #D2AD67; 
}
.hf-heading {
  color: #D2AD67;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.ft-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
#ft-container01, #ft-container02 {
  border-left: 1px solid rgba(251, 250, 246, 0.12);
}
#mailto01 {
  overflow-wrap: break-word;
}
.mb-2 h6 {
  font-weight: bold;
}
.col-md-4.mb-4 {
  margin: 0;
}
.hf-hours li {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hf-hours li:last-child { 
  border-bottom: 0; 
}
.hf-hours .day { 
  font-weight: 600; 
}
.hf-hours .time { 
  opacity: .8; 
}
.btn-gold {
  background: linear-gradient(135deg,#C7A24F,#E4CA7A);
  color: #fff;
  border: 0; 
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(199,162,79,.22);
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-gold:hover { 
  filter: brightness(1.05); 
  transform: translateY(-2px); 
}
.social-icon {
  margin-left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.social-icon img {
  margin-right: 10px;
  border-radius: 50%;
}
.hf-social-link {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.hf-social-link:hover {
  transform: translateY(-2px);
  border-color: #D2AD67;
  color: #111;
}



@media (max-width: 1200px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 25px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 25px 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3.5rem;
        gap: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .services,
    .about,
    .testimonials,
    .contact {
        padding: 80px 25px;
    }
    
    .services-grid {
        gap: 30px;
    }
}

@media (max-width: 767.98px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .brand-dot {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero-badge {
        padding: 8px 20px;
        gap: 10px;
        margin-bottom: 2rem;
    }
    
    .badge-line {
        width: 20px;
    }
    
    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        gap: 12px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        margin-bottom: 3rem;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 35px;
        font-size: 0.95rem;
    }
    
    .hero-divider::before,
    .hero-divider::after {
        width: 50px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .services,
    .about,
    .testimonials,
    .contact {
        padding: 60px 20px;
    }
    
    .services-grid,
    .about-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card,
    .about-card,
    .testimonial-card {
        padding: 2.5rem 2rem;
    }
    
    .service-number {
        font-size: 3.5rem;
        top: 15px;
        right: 15px;
    }
    
    .service-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2.5rem 2rem;
    }
    
    .form-header h3 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 14px 18px;
    }
    
    .submit-button {
        padding: 18px;
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .quote-icon {
        font-size: 3.5rem;
    }
    
    .testimonial-text {
        font-size: 1.15rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Footer mobile improvements */
    .hf-footer {
        padding: 30px 20px;
    }
    
    .ft-container {
        flex-direction: column;
        gap: 30px;
    }
    
    #ft-container01, #ft-container02 {
        max-width: 100%;
        border-bottom: 1px solid rgba(251, 250, 246, 0.12);
        border-left: none;
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .col-md-4.mb-4 {
        min-width: 100%;
        width: 100%;
    }
    
    .hf-hours li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        gap: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .about-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .submit-button {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .service-card:active {
        transform: translateY(-8px) scale(1.01);
    }
    
    .about-card:active {
        transform: translateY(-8px);
    }
    
    .testimonial-card:active {
        transform: translateY(-5px);
    }
    
    .cta-button:active,
    .submit-button:active,
    .btn-gold:active {
        transform: translateY(-2px);
    }
    
    .hero-feature:active .feature-icon {
        transform: scale(1.05);
    }
}

@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        padding: 60px 25px 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        margin-bottom: 3rem;
    }
    
    .services,
    .about,
    .testimonials,
    .contact {
        padding: 50px 25px;
    }
}

@media (min-width: 768px) and (max-width: 968px) {
    .services-grid,
    .about-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}
