/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=Lato:wght@300;400;700;900&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f1419;
    --secondary-color: #1a2332;
    --accent-color: #d4af37;
    --accent-light: #f4e4bc;
    --accent-dark: #b8941f;
    --text-dark: #0a0a0a;
    --text-light: #3d4551;
    --text-muted: #6b7280;
    --bg-light: #fafafa;
    --bg-cream: #f7f5f0;
    --bg-ivory: #fefcf8;
    --white: #ffffff;
    --border-color: #d1d5db;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 72px rgba(0,0,0,0.16);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.02em;
    background-color: var(--bg-ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Premium Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.015) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Top Bar - Ultra Refined */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 14px 0;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    position: relative;
}

.phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-link:hover::after {
    width: 100%;
}

.phone-link:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.phone-link i {
    font-size: 13px;
    transition: transform 0.4s ease;
}

.phone-link:hover i {
    transform: scale(1.2);
}

.hours {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-estimate {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--primary-color);
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.btn-estimate::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.5s ease;
}

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

.btn-estimate:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-color);
}

/* Navigation - Ultra Premium */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    background-color: rgba(255, 255, 255, 0.99);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-wrapper {
    padding: 18px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-menu a i {
    font-size: 9px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover a i {
    transform: rotate(180deg) scale(1.2);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background-color: var(--white);
    list-style: none;
    min-width: 280px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 0;
    margin-top: 10px;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 14px 28px;
    display: block;
    color: var(--text-dark);
    text-transform: none;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 400;
    position: relative;
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--bg-cream), transparent);
    color: var(--primary-color);
    padding-left: 32px;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 7px;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

/* Hero Section - Ultra Luxurious */
.hero {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2332 30%, #2d3748 70%, #1a2332 100%);
    color: var(--white);
    padding: 160px 0 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.hero-bg-image:not([src]),
.hero-bg-image[src=""] {
    display: none;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-placeholder i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.15);
    transition: all 0.5s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    padding: 40px 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

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

.hero h1 {
    font-size: 72px;
    margin-bottom: 32px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 10px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.4);
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.hero p {
    font-size: 24px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.7;
    text-shadow: 0 3px 15px rgba(0,0,0,0.7), 0 1px 5px rgba(0,0,0,0.5), 0 0 20px rgba(0,0,0,0.3);
}

/* Buttons - Ultra Premium */
.btn {
    display: inline-block;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* Features Section - Ultra Elegant */
.features {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: var(--white);
    padding: 45px 35px;
    text-align: center;
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.feature-card i {
    font-size: 58px;
    color: var(--accent-color);
    margin-bottom: 32px;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-card:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* About Preview - Ultra Sophisticated */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.2;
}

.about-preview-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 56px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.15;
    position: relative;
    padding-bottom: 20px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.about-text p {
    font-size: 20px;
    margin-bottom: 28px;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 300;
}

/* Page Header - Ultra Premium */
.page-header {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2332 50%, #2d3748 100%);
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 10s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.4;
}

.page-header h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(212, 175, 55, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 22px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* About Content - Ultra Refined */
.about-content {
    padding: 80px 0;
    background-color: var(--white);
}

.content-section {
    max-width: 1100px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.content-section p {
    font-size: 20px;
    margin-bottom: 28px;
    color: var(--text-light);
    line-height: 1.95;
    font-weight: 300;
}

/* Promise Section - Ultra Elegant */
.promise-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.promise-section h2 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.promise-section p {
    font-size: 24px;
    color: var(--text-light);
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.85;
    font-style: italic;
    position: relative;
    padding: 0 40px;
}

.promise-section p::before,
.promise-section p::after {
    content: '"';
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: -20px;
}

.promise-section p::before {
    left: 0;
}

.promise-section p::after {
    right: 0;
    top: auto;
    bottom: -40px;
}

/* Values Section - Ultra Premium */
.values-section {
    padding: 80px 0;
    background-color: var(--white);
}

.values-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--white);
    padding: 70px 60px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover::after {
    opacity: 1;
}

.value-card h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Services Content - Ultra Sophisticated */
.services-content {
    padding: 80px 0;
    background-color: var(--white);
}

.service-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 48px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-item:hover .service-icon::before {
    top: 50%;
    left: 50%;
}

.service-item:hover .service-icon {
    transform: rotate(8deg) scale(1.1);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.service-text {
    flex: 1;
    padding-top: 15px;
}

.service-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.service-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.service-text p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.95;
    font-weight: 300;
}

/* Areas Content - Ultra Elegant */
.areas-content {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
}

.intro-text {
    font-size: 22px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.9;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.area-card {
    background-color: var(--white);
    padding: 50px 40px;
    text-align: center;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.area-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.area-card:hover::before {
    opacity: 1;
}

.area-card:hover::after {
    transform: scaleX(1);
}

.area-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.area-card:hover h3 {
    color: var(--white);
    transform: scale(1.08);
}

.service-area-note {
    text-align: center;
    padding: 60px;
    background-color: var(--white);
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.service-area-note p {
    font-size: 19px;
    color: var(--text-light);
    font-weight: 300;
}

.service-area-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.service-area-note a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--primary-color);
    padding-bottom: 4px;
}

/* Contact Content - Ultra Premium */
.contact-content {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-info h2 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.contact-info > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
    line-height: 1.95;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    padding-left: 10px;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item i {
    font-size: 32px;
    color: var(--accent-color);
    margin-top: 5px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.15) rotate(5deg);
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.contact-item a:hover::after {
    width: 100%;
}

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

/* Contact Form - Ultra Sophisticated */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    padding: 70px 60px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.contact-form-wrapper h2 {
    font-size: 48px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

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

.form-message {
    margin-top: 30px;
    padding: 24px;
    border-radius: 0;
    display: none;
    font-weight: 400;
    font-size: 16px;
}

.form-message.success {
    background-color: #f0f9f4;
    color: #166534;
    border: 1px solid #86efac;
    display: block;
}

.form-message.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}

/* Feedback Section - Ultra Elegant */
.feedback-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
    text-align: center;
}

.feedback-section h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.feedback-section p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.9;
}

/* CTA Section - Ultra Premium */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f14 0%, #1a2332 50%, #2d3748 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

.cta-bg-image:not([src]),
.cta-bg-image[src=""] {
    display: none;
}

.cta-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-placeholder i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.12);
    transition: all 0.5s ease;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 12s ease-in-out infinite;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.4;
    z-index: 1;
}

.cta-section h2 {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(212, 175, 55, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.intro-content {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.intro-content p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.95;
    font-weight: 300;
}

/* Build With Us Section */
.build-with-us {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
}

.build-content {
    max-width: 1100px;
    margin: 0 auto;
}

.build-content h2 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.build-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.build-content > p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.95;
    font-weight: 300;
    margin-bottom: 24px;
    text-align: center;
}

.build-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.build-feature {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.build-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.build-feature:hover::before {
    transform: scaleX(1);
}

.build-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.build-feature i {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.build-feature:hover i {
    transform: scale(1.15) rotate(5deg);
}

.build-feature h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.build-feature p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 16px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.portfolio-img:not([src]),
.portfolio-img[src=""] {
    display: none;
}

.portfolio-image:has(.portfolio-img:not([src])),
.portfolio-image:has(.portfolio-img[src=""]) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.portfolio-image:has(.portfolio-img:not([src])) .portfolio-placeholder,
.portfolio-image:has(.portfolio-img[src=""]) .portfolio-placeholder {
    display: flex;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.portfolio-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.9), rgba(26, 35, 50, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    text-align: center;
}

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

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

.portfolio-item:hover .portfolio-placeholder i {
    transform: scale(1.2);
    opacity: 0.1;
}

.portfolio-overlay h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.portfolio-overlay p {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 24px;
    font-weight: 300;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.portfolio-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 28px;
    border: 2px solid var(--accent-color);
    transition: all 0.4s ease;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s, background 0.3s ease, color 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .portfolio-link {
    transform: translateY(0);
}

.portfolio-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

/* Portfolio Gallery Page Styles */
.portfolio-gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.portfolio-filter-section {
    padding: 40px 0;
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 28px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.portfolio-project {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    overflow: hidden;
}

.portfolio-project:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.project-placeholder i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.9), rgba(26, 35, 50, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
}

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

.portfolio-project:hover .project-img,
.portfolio-project:hover .project-placeholder {
    transform: scale(1.1);
}

.project-overlay h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.project-overlay p {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 300;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.project-type {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
}

.project-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 24px;
    border: 2px solid var(--accent-color);
    transition: all 0.4s ease;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.3s, background-color 0.3s ease, color 0.3s ease;
}

.portfolio-project:hover .project-overlay h3,
.portfolio-project:hover .project-overlay p,
.portfolio-project:hover .project-overlay .project-type,
.portfolio-project:hover .project-overlay .project-link {
    transform: translateY(0);
}

.project-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.project-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 300;
}

.project-year {
    display: inline-block;
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 50px 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.award-item:hover::before {
    transform: scaleX(1);
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.award-item i {
    font-size: 56px;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: block;
    transition: transform 0.4s ease;
}

.award-item:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.award-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.award-item p {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-cream);
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.quote-icon {
    font-size: 48px;
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 24px;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.85;
    font-weight: 300;
    font-style: italic;
    position: relative;
}

.testimonial-author h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.testimonial-author p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
    font-style: normal;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    border: 4px solid var(--accent-color);
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    box-shadow: var(--shadow-gold);
}

.step-content {
    flex: 1;
    padding-top: 20px;
}

.step-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.step-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.85;
    font-weight: 300;
}

/* Footer - Compact & Subtle */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 25px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0;
}

.footer-section h3::after {
    display: none;
}

.footer-section p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 300;
    font-size: 14px;
}

.footer-section a::after {
    display: none;
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 0;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 58px;
    }
    
    .contact-wrapper {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 25px;
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        align-items: stretch;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

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

    .nav-menu a {
        padding: 20px 0;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-cream);
        margin: 0;
        padding: 0;
        border: none;
    }

    .dropdown-menu a {
        padding: 14px 20px;
    }

    .hero {
        padding: 120px 0 140px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 42px;
    }
    
    .hero-content {
        padding: 35px 40px;
    }

    .hero p {
        font-size: 20px;
    }

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

    .service-item {
        flex-direction: column !important;
        gap: 40px;
    }

    .service-icon {
        align-self: flex-start;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 25px;
    }

    .page-header {
        padding: 100px 0 80px;
    }

    .page-header h1 {
        font-size: 48px;
    }

    .about-text h2,
    .content-section h2,
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 40px;
    }

    .features,
    .about-preview,
    .about-content,
    .services-content,
    .contact-content {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 140px;
    }

    .hero h1 {
        font-size: 36px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero p {
        font-size: 18px;
    }

    .page-header {
        padding: 100px 0 80px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .contact-form-wrapper {
        padding: 50px 35px;
    }

    .features,
    .about-preview,
    .about-content,
    .services-content,
    .contact-content,
    .intro-section,
    .build-with-us,
    .portfolio-section,
    .awards-section,
    .testimonials-section,
    .process-section {
        padding: 60px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .step-number {
        width: 100px;
        height: 100px;
        font-size: 28px;
    }

    .build-features {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
}

/* Gallery Modal - Swipeable Photo Gallery */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: rotate(90deg);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 0;
    cursor: pointer;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#galleryImage {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.95);
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y;
}

#galleryImage.loaded {
    opacity: 1;
    transform: scale(1);
}

.gallery-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 48px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.gallery-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.gallery-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#galleryCounter {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--accent-color);
}

#galleryTitle {
    display: block;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
}

/* Touch swipe indicators */
.gallery-image-container::before,
.gallery-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10002;
}

.gallery-image-container.swiping-left::after {
    content: '→';
    right: 50px;
    opacity: 1;
}

.gallery-image-container.swiping-right::before {
    content: '←';
    left: 50px;
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-modal-content {
        padding: 40px 20px;
    }

    .gallery-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .gallery-prev {
        left: 15px;
    }

    .gallery-next {
        right: 15px;
    }

    #galleryImage {
        max-height: 85vh;
    }

    .gallery-info {
        bottom: 15px;
        padding: 12px 20px;
    }

    #galleryCounter {
        font-size: 12px;
    }

    #galleryTitle {
        font-size: 16px;
    }
}
