/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --charcoal: #1a1a1a;
    --dark-charcoal: #121212;
    --gold: #d4af37;
    --light-gold: #f4e8c1;
    --dark-gold: #b8941f;
    --white: #ffffff;
    --beige: #f8f5f0;
    --light-gray: #f9f9f9;
    --medium-gray: #e8e8e8;
    --dark-gray: #333333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.75rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

h3 {
    font-size: 1.75rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

ul {
    list-style: none;
}

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

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

.mt-4 {
    margin-top: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::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: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--dark-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

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

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--medium-gray);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-invest {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--white);
    padding: 18px 45px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-invest:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 50px;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-charcoal);
}

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

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark-gray);
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-dark);
    border-radius: var(--border-radius);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--gold);
    padding-left: 30px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 40px;
    border-radius: var(--border-radius);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.typing-container {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    min-height: 60px;
    color: var(--light-gold);
}

.typed-text {
    display: inline-block;
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: var(--gold);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--beige);
}

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

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

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

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

.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.feature i {
    color: var(--gold);
    font-size: 1.5rem;
}

.feature span {
    font-weight: 600;
    color: var(--dark-charcoal);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 100px 0;
    background: var(--dark-charcoal);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--dark-gold);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: 120px 0;
    background: var(--beige);
}

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

.portfolio-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.portfolio-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.portfolio-link {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    padding: 120px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.blog-date, .blog-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.blog-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
    color: var(--dark-gold);
}

/* ============================================
   INVEST SECTION
   ============================================ */
.invest {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-charcoal), #2a2a2a);
    color: var(--white);
    text-align: center;
}

.invest-content {
    max-width: 800px;
    margin: 0 auto;
}

.invest .section-title h2 {
    color: var(--white);
}

.invest .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.invest .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.invest-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.invest-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.invest-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.invest-feature i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.invest-feature span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--beige);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-dark);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.contact-item p {
    color: var(--dark-gray);
}

.contact-item a {
    color: var(--dark-gray);
    transition: var(--transition);
}

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

.contact-social h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-charcoal);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-charcoal);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-gray);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: #999;
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-about {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li,
.footer-services li {
    transition: var(--transition);
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a i,
.footer-services a i {
    font-size: 0.8rem;
    color: var(--gold);
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-contact-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.designer a {
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.designer a:hover {
    color: var(--light-gold);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .typing-container {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-dark);
        padding: 100px 30px 30px;
        transition: var(--transition);
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        min-width: auto;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .typing-container {
        font-size: 1.5rem;
        min-height: 50px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .invest-features {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .about, .services, .portfolio, .blog, .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .typing-container {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 30px;
    }
    
    .service-card,
    .contact-form {
        padding: 25px;
    }
    
    .contact-item {
        padding: 15px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   LOADING ANIMATIONS
   ============================================ */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Stat Counter Animation */
.stat-number {
    transition: all 1s ease;
}

/* ============================================
   PAGE HERO (ALL PAGES)
   ============================================ */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('image/homes.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--light-gold);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--beige);
}

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

.about-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.google-review {
    position: absolute;
    top: 20px;
    right: 20px;
}

.btn-google {
    background: var(--white);
    color: var(--dark-charcoal);
    padding: 12px 25px;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.btn-google:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.about-text h3 {
    margin: 2rem 0 1rem;
    color: var(--dark-charcoal);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2.5rem 0;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stat {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

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

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-call {
    background: var(--gold);
    color: var(--white);
}

.btn-email {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-call:hover,
.btn-email:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: var(--light-gold);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.value-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
    font-size: 1.5rem;
}

.member-position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-contact p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.member-contact a {
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

.member-contact i {
    color: var(--gold);
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-charcoal), #2a2a2a);
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */
.services-nav {
    padding: 40px 0;
    background: var(--light-gray);
}

.services-quick-nav {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.services-quick-nav h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
    font-size: 1.3rem;
}

.nav-links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.nav-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

.nav-link i {
    font-size: 1.5rem;
    color: var(--gold);
}

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

.nav-link span {
    font-size: 0.9rem;
    font-weight: 600;
}

.services-page {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--gold);
}

.service-image {
    position: relative;
    height: 350px;
}

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

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

.service-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.service-content {
    padding: 30px 30px 30px 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    margin-bottom: 0;
    color: var(--dark-charcoal);
}

.service-badge {
    background: var(--light-gold);
    color: var(--dark-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content > p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details {
    margin: 2rem 0;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.service-details h4 {
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
    font-size: 1.1rem;
}

.service-details ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.service-details i {
    color: var(--gold);
    font-size: 0.9rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
}

.service-features {
    display: flex;
    gap: 20px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-features i {
    color: var(--gold);
}

.btn-service {
    background: var(--gold);
    color: var(--white);
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-service:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

/* Services CTA */
.services-cta .cta-content {
    text-align: center;
    flex-direction: column;
    gap: 30px;
}

.cta-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--beige);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: var(--medium-gray);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.step:hover .step-number {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
    font-size: 1.2rem;
}

.step-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ============================================
   PORTFOLIO PAGE SPECIFIC STYLES
   ============================================ */
.portfolio-stats {
    padding: 60px 0;
    background: var(--light-gray);
}

.portfolio-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.portfolio-stats .stat-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.portfolio-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.portfolio-stats .stat-number {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.portfolio-stats .stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
    text-transform: uppercase;
}

.portfolio-page {
    padding: 100px 0;
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--light-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 30px;
    color: var(--dark-gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}

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

.portfolio-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
    font-size: 1.3rem;
}

.portfolio-content > p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.portfolio-meta {
    display: flex;
    gap: 20px;
    margin: 1.5rem 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.portfolio-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.portfolio-meta i {
    color: var(--gold);
    font-size: 0.9rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    gap: 12px;
    color: var(--dark-gold);
}

/* Portfolio CTA */
.portfolio-cta .cta-content {
    text-align: center;
    flex-direction: column;
    gap: 30px;
}

/* ============================================
   RESPONSIVE DESIGN FOR NEW PAGES
   ============================================ */
@media (max-width: 1200px) {
    .page-hero h1 {
        font-size: 3.5rem;
    }
    
    .nav-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-stats .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .page-hero {
        padding: 150px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .about-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .service-details ul {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .nav-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-stats .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

/* Stagger animation for portfolio items */
.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Active filter style */
.filter-btn.active {
    position: relative;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* ============================================
   LOADING STATES
   ============================================ */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Image hover effects for better visual feedback */
.service-image,
.portfolio-image,
.team-member .member-image {
    overflow: hidden;
}

.service-image img,
.portfolio-image img,
.team-member img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-dark);
        padding: 100px 30px 30px;
        transition: var(--transition);
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        min-width: auto;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Print styles */
@media print {
    .page-hero {
        background: none !important;
        color: var(--charcoal) !important;
        padding: 50px 0 !important;
    }
    
    .page-hero h1,
    .page-hero .hero-subtitle {
        color: var(--charcoal) !important;
    }
    
    .btn,
    .mobile-menu-btn,
    .social-links,
    .portfolio-filters {
        display: none !important;
    }
}

/* ============================================
   BLOG PAGE SPECIFIC STYLES
   ============================================ */
.blog-page {
    padding: 100px 0;
    background: var(--beige);
}

.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-main {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.blog-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.blog-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    color: var(--gold);
    font-size: 0.9rem;
}

.blog-content h3 {
    margin-bottom: 1.2rem;
    color: var(--dark-charcoal);
    font-size: 1.5rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.blog-full-content {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.blog-full-content p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.blog-card.expanded .blog-full-content {
    display: block;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
    color: var(--dark-gold);
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.tag:hover {
    background: var(--gold);
    color: var(--white);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    color: var(--dark-gray);
    font-weight: 600;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.page-btn.next {
    width: auto;
    padding: 0 20px;
    gap: 8px;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.widget-title {
    color: var(--dark-charcoal);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gold);
}

.search-box {
    display: flex;
    position: relative;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--dark-gold);
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-gray);
    transition: var(--transition);
}

.categories-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.categories-list span {
    background: var(--light-gray);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--dark-charcoal);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.recent-post:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-charcoal);
}

.recent-post-content h4 a {
    color: inherit;
    transition: var(--transition);
}

.recent-post-content h4 a:hover {
    color: var(--gold);
}

.post-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags .tag {
    text-decoration: none;
    cursor: pointer;
}

.cta-widget {
    background: linear-gradient(135deg, var(--dark-charcoal), #2a2a2a);
    color: var(--white);
    text-align: center;
}

.cta-widget .widget-title {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.btn-cta {
    background: var(--gold);
    color: var(--white);
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-cta:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

/* Blog CTA */
.blog-cta .cta-content {
    text-align: center;
    flex-direction: column;
    gap: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

.newsletter-form button {
    white-space: nowrap;
}

/* ============================================
   INVEST PAGE SPECIFIC STYLES
   ============================================ */
.invest-stats {
    padding: 60px 0;
    background: var(--light-gray);
}

.invest-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.invest-stats .stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.invest-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.invest-stats .stat-number {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.invest-stats .stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invest-page {
    padding: 100px 0;
    background: var(--white);
}

.invest-section {
    margin-bottom: 80px;
}

.invest-section:last-child {
    margin-bottom: 0;
}

.invest-section h3 {
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.invest-section p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.investment-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.highlight-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.benefit-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 2rem;
}

.opportunity-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

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

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

.investment-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--medium-gray);
}

.package-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    background: linear-gradient(135deg, var(--dark-charcoal), #2a2a2a);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.package-header h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.package-features {
    padding: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.package-features li:last-child {
    margin-bottom: 0;
}

.package-features i {
    color: var(--gold);
    font-size: 0.9rem;
}

.package-card a {
    display: block;
    margin: 0 30px 30px;
    text-align: center;
}

.btn-package {
    background: var(--gold);
    color: var(--white);
    width: 100%;
    padding: 15px;
    font-weight: 600;
}

.btn-package:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

.cta-invest {
    background: linear-gradient(135deg, var(--beige), var(--light-gray));
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.cta-invest h3 {
    margin-bottom: 1rem;
}

.invest-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Testimonials */
.invest-testimonials {
    padding: 100px 0;
    background: var(--beige);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.testimonial-content {
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.testimonial-content p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 4rem;
    color: var(--light-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    opacity: 0.3;
}

.testimonial-author h4 {
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-author p {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */
.contact-page {
    padding: 100px 0;
    background: var(--beige);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h3,
.contact-social h3,
.contact-cta h3 {
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-description {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-dark);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.contact-content p,
.contact-content a {
    color: var(--dark-gray);
    line-height: 1.6;
}

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

.contact-social {
    margin: 3rem 0;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-charcoal);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-cta {
    padding: 30px;
    background: linear-gradient(135deg, var(--dark-charcoal), #2a2a2a);
    border-radius: var(--border-radius);
    color: var(--white);
}

.contact-cta h3 {
    color: var(--white);
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call,
.btn-email {
    padding: 12px 25px;
    font-size: 0.95rem;
}

.btn-call {
    background: var(--gold);
    color: var(--white);
}

.btn-email {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-call:hover {
    background: var(--dark-gold);
}

.btn-email:hover {
    background: var(--white);
    color: var(--dark-charcoal);
}

/* Contact Form Styles */
.contact-container form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-dark);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-gray);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 50px;
}

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

.form-footer {
    margin-top: 2rem;
}

.btn-submit {
    background: var(--gold);
    color: var(--white);
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
}

.btn-submit:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.method-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.method-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.method-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.method-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.method-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--dark-gold);
}

/* Map Container */
.map-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-top: 60px;
}

.map-title {
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.map-address {
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.map-address p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    margin: 0;
}

.map-address i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE DESIGN FOR NEW PAGES
   ============================================ */
@media (max-width: 1200px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .investment-highlights,
    .benefits-grid,
    .investment-packages,
    .testimonial-grid,
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-main,
    .sidebar-widget,
    .contact-container form,
    .map-container {
        padding: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .opportunity-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .invest-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-card.featured {
        border-width: 1px;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .investment-highlights,
    .benefits-grid,
    .investment-packages,
    .testimonial-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .invest-buttons {
        flex-direction: column;
    }
    
    .invest-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .invest-stats .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .quick-contact-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .page-btn {
        width: 40px;
        height: 40px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card,
.highlight-card,
.benefit-card,
.package-card,
.testimonial-card,
.method-card {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

/* Stagger animation delay */
.highlight-card:nth-child(2) { animation-delay: 0.1s; }
.highlight-card:nth-child(3) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.1s; }
.benefit-card:nth-child(3) { animation-delay: 0.2s; }
.package-card:nth-child(2) { animation-delay: 0.1s; }
.package-card:nth-child(3) { animation-delay: 0.2s; }
.method-card:nth-child(2) { animation-delay: 0.1s; }
.method-card:nth-child(3) { animation-delay: 0.2s; }
.method-card:nth-child(4) { animation-delay: 0.3s; }

/* Form focus effects */
.form-control:focus {
    animation: pulse 0.3s ease-out;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Success message animation */
.success-message {
    animation: slideInUp 0.5s ease-out;
}

/* Loading animation for forms */
.form-loading {
    position: relative;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Print styles for contact page */
@media print {
    .contact-methods,
    .quick-contact-buttons,
    .social-icons {
        display: none !important;
    }
    
    .map-container {
        page-break-inside: avoid;
    }
    
    .contact-container form {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .blog-main,
    .sidebar-widget,
    .contact-container form,
    .method-card,
    .testimonial-card,
    .package-card,
    .benefit-card,
    .highlight-card {
        background: #2a2a2a;
        color: #e0e0e0;
    }
    
    .widget-title,
    .contact-content h4,
    .method-card h3,
    .testimonial-author h4,
    .benefit-card h4,
    .highlight-content h3 {
        color: #e0e0e0;
    }
    
    .blog-content p,
    .blog-excerpt,
    .post-date,
    .contact-content p,
    .contact-content a,
    .method-card p,
    .testimonial-content p,
    .benefit-card p,
    .highlight-content p {
        color: #b0b0b0;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 10px;
}

/* ============================================
   JAVASCRIPT-ENHANCED STYLES
   ============================================ */

/* Loading states */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Form validation styles */
.form-control.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05);
}

.error-message {
    color: #e74c3c !important;
    font-size: 0.85rem !important;
    margin-top: 5px !important;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Dropdown active state for mobile */
.dropdown.active .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Mobile menu active state */
nav.active {
    right: 0 !important;
}

/* Preloader styles (optional) */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Portfolio filter animation */
.portfolio-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Blog expanded state */
.blog-card.expanded {
    box-shadow: var(--shadow-dark);
    transform: translateY(-5px);
}

/* Scroll progress indicator (optional) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Accessibility improvements */
:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .blog-full-content {
        display: block !important;
    }
}

/* ============================================
   CRITICAL FIXES FOR JAVASCRIPT FUNCTIONALITY
   ============================================ */

/* MOBILE MENU STYLES - MUST ADD THESE */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block !important;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-dark);
        padding: 100px 30px 30px !important;
        transition: var(--transition);
        z-index: 1000;
        display: flex !important;
        flex-direction: column;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0 !important;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px !important;
        align-items: flex-start !important;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 10px 0 10px 20px !important;
        min-width: auto !important;
        display: none !important;
        background: transparent !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease !important;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }
    
    /* Overlay when menu is open */
    nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* TYPING EFFECT FIXES */
.typing-container {
    display: flex;
    align-items: center;
    min-height: 60px;
}

.typed-text {
    min-width: 10px;
}

.cursor {
    font-weight: bold;
    margin-left: 5px;
    animation: blink 1s infinite !important;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* BLOG PAGE SPECIFIC */
.blog-card .blog-full-content {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
}

.blog-card.expanded .blog-full-content {
    display: block !important;
}

.blog-card.expanded .blog-excerpt {
    display: none !important;
}

/* DROPDOWN ARROW ROTATION */
.dropdown-toggle i {
    transition: transform 0.3s ease;
}

/* FIX FOR HEADER ON SCROLL */
header {
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

/* SERVICE DROPDOWN CONTENT */
.service-content.expanded {
    max-height: 1000px !important;
    overflow: visible !important;
}

/* PORTFOLIO FILTER */
.filter-btn.active {
    background: var(--gold) !important;
    color: var(--white) !important;
    border-color: var(--gold) !important;
}

/* FORM VALIDATION */
.form-control.error {
    border-color: #e74c3c !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* LOADING STATES */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ANIMATIONS */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

/* STATS COUNTER */
.stat-number.animated {
    color: var(--gold);
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .typing-container {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* PRINT STYLES */
@media print {
    nav,
    .mobile-menu-btn,
    .hero-buttons,
    .social-links {
        display: none !important;
    }
    
    .blog-full-content {
        display: block !important;
    }
}
