/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-light: #E1E0C3;
    --color-medium: #8B8A74;
    --color-dark: #181913;
    --color-gold: #D4AF37;
    --color-white: #FFFFFF;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Arial', 'Helvetica', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.8;
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--color-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--color-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ccc;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 25, 19, 0.7) 0%, rgba(139, 138, 116, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--color-light);
    font-style: italic;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-gold);
    color: var(--color-dark);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ccc;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 25, 19, 0.8) 0%, rgba(139, 138, 116, 0.6) 100%);
    z-index: 2;
}

.page-header h1 {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    font-size: 3rem;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    position: relative;
    z-index: 3;
    color: var(--color-light);
    font-size: 1.2rem;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}

/* Content Sections */
.intro-section,
.content-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-medium);
    font-style: italic;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-dark);
}

.intro-content p {
    margin-bottom: 25px;
}

.main-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
}

.main-content h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin: 50px 0 25px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 10px;
}

.main-content p {
    margin-bottom: 25px;
    color: var(--color-dark);
}

.content-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: #ccc;
    min-height: 300px;
    object-fit: cover;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.course-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ccc;
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.course-content p {
    color: var(--color-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.course-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.course-link:hover {
    color: var(--color-dark);
}

/* Interactive Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-section .section-title {
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--color-gold);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Interactive Tabs Section */
.interactive-tabs-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid var(--color-medium);
    color: var(--color-dark);
    font-size: 1.1rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.tab-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
    font-weight: bold;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #ccc;
    transition: transform 0.5s ease;
}

.tab-image:hover img {
    transform: scale(1.05);
}

.tab-text h3 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--color-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.tab-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.tab-list {
    list-style: none;
    padding: 0;
}

.tab-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.tab-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: var(--color-medium);
    line-height: 1.8;
}

/* Unique Feature Sections for Each Page */
.unique-feature-section {
    padding: 80px 0;
    margin: 60px 0;
}

/* Technical Basics Unique Section */
.technical-unique {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 138, 116, 0.1) 100%);
    border-top: 3px solid var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
}

.unique-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.unique-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.unique-content h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.unique-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-medium);
    margin-bottom: 40px;
}

.exposure-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.exposure-item {
    text-align: left;
}

.exposure-label {
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.exposure-bar {
    height: 30px;
    background-color: var(--color-light);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.exposure-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold) 0%, #F4D03F 100%);
    border-radius: 15px;
    transition: width 1s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Composition Unique Section */
.composition-unique {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 100px 0;
}

.composition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.composition-item {
    perspective: 1000px;
}

.composition-box {
    height: 300px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(139, 138, 116, 0.2) 100%);
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.composition-box:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.composition-box h3 {
    position: relative;
    z-index: 2;
    color: var(--color-gold);
    font-size: 1.5rem;
    text-align: center;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.grid-line {
    position: absolute;
    background-color: rgba(212, 175, 55, 0.5);
}

.grid-line.vertical {
    width: 2px;
    height: 100%;
}

.grid-line.horizontal {
    height: 2px;
    width: 100%;
}

.spiral-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, transparent 20%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.3) 25%, transparent 25%);
    border-radius: 50%;
}

.lines-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    height: 3px;
    transform-origin: left center;
}

.line-1 {
    top: 20%;
    left: 10%;
    width: 60%;
    transform: rotate(15deg);
}

.line-2 {
    top: 50%;
    left: 20%;
    width: 50%;
    transform: rotate(-10deg);
}

.line-3 {
    bottom: 20%;
    left: 15%;
    width: 55%;
    transform: rotate(20deg);
}

.composition-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-light);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Portrait Photography Unique Section */
.portrait-unique {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
}

.lighting-demo {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.lighting-demo h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.lighting-demo > p {
    font-size: 1.1rem;
    color: var(--color-medium);
    margin-bottom: 50px;
    line-height: 2;
}

.lighting-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lighting-option {
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lighting-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.light-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.lighting-option h4 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.lighting-option p {
    font-size: 0.95rem;
    color: var(--color-medium);
    line-height: 1.6;
}

/* Photo Editing Unique Section */
.editing-unique {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.editing-workflow {
    text-align: center;
}

.editing-workflow h2 {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.workflow-step {
    flex: 0 0 200px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 138, 116, 0.1) 100%);
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.workflow-step h4 {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.workflow-step p {
    font-size: 0.95rem;
    color: var(--color-light);
    line-height: 1.6;
}

.workflow-arrow {
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: bold;
}

/* Commercial Photography Unique Section */
.commercial-unique {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.commercial-types {
    text-align: center;
}

.commercial-types h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.type-card {
    padding: 40px 30px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--color-gold);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.type-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.type-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.type-card > p {
    font-size: 1rem;
    color: var(--color-medium);
    margin-bottom: 25px;
    line-height: 1.8;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.type-features span {
    padding: 8px 15px;
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-info-section > p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-medium);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background-color: var(--color-light);
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-text p {
    font-size: 1rem;
    color: var(--color-medium);
    line-height: 1.8;
    margin: 0;
}

.contact-text a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--color-dark);
}

.map-section h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Contact Form Styles */
.contact-form-section {
    margin: 80px 0;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-gold);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
}

.contact-form-section > p {
    font-size: 1.1rem;
    color: var(--color-medium);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--color-dark);
    background-color: var(--color-white);
    border: 2px solid var(--color-medium);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
    color: var(--color-medium);
    opacity: 0.7;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23181913' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-gold);
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-medium);
    line-height: 1.6;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.contact-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    border-radius: 10px;
    border: 2px solid var(--color-gold);
}

.contact-cta h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--color-medium);
    margin-bottom: 30px;
    line-height: 2;
}

/* Success Page Styles */
.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.success-content {
    max-width: 700px;
    text-align: center;
    padding: 60px 40px;
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--color-gold);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-dark);
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-content h1 {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.success-message {
    font-size: 1.3rem;
    color: var(--color-medium);
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.success-details {
    font-size: 1.1rem;
    color: var(--color-medium);
    margin-bottom: 40px;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.success-info {
    text-align: left;
    padding-top: 40px;
    border-top: 2px solid var(--color-light);
}

.success-info h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
}

.next-steps {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: var(--color-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-dark);
    color: var(--color-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-light);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-medium);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-links li:not(:has(a)),
.footer-links li span {
    color: var(--color-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-medium);
}

.footer-bottom p {
    color: var(--color-light);
    font-size: 0.9rem;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
    color: var(--color-light);
    padding: 25px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--color-gold);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: var(--color-light);
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border: 2px solid var(--color-gold);
    background-color: transparent;
    color: var(--color-gold);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-weight: 500;
    border-radius: 5px;
}

.cookie-btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.cookie-btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
}

.cookie-btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.cookie-settings {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: none;
    border: 1px solid var(--color-gold);
}

.cookie-settings.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-settings h4 {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cookie-setting-item {
    margin-bottom: 20px;
}

.cookie-setting-item label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
    cursor: pointer;
    accent-color: var(--color-gold);
}

.cookie-setting-item span {
    font-weight: 500;
    color: var(--color-light);
    margin-bottom: 5px;
    font-size: 1rem;
}

.cookie-setting-item p {
    font-size: 0.85rem;
    color: var(--color-medium);
    margin: 0;
    line-height: 1.5;
}

/* Policy Pages Styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    font-style: italic;
    color: var(--color-medium);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-light);
}

.policy-content h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin: 40px 0 20px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 10px;
}

.policy-content h3 {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin: 30px 0 15px;
    letter-spacing: 0.5px;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0;
    padding-left: 30px;
    line-height: 2;
}

.policy-content li {
    margin-bottom: 10px;
    color: var(--color-dark);
}

.policy-content a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--color-dark);
    text-decoration: underline;
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 15px;
    text-align: left;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--color-light);
    color: var(--color-dark);
}

.cookie-table tr:hover {
    background-color: var(--color-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--color-dark);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .section-header h2,
    .section-title {
        font-size: 2rem;
    }

    .main-content h2 {
        font-size: 1.5rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .tab-content-wrapper {
        grid-template-columns: 1fr;
    }

    .tab-image img {
        height: 300px;
    }

    .tabs-nav {
        gap: 10px;
    }

    .tab-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .composition-grid {
        grid-template-columns: 1fr;
    }

    .lighting-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-steps {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper,
    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 40px 30px;
        margin: 40px 0;
    }

    .contact-form-section h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-cta {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .success-content {
        padding: 40px 20px;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .intro-content,
    .main-content {
        font-size: 1rem;
    }

    .unique-feature-section {
        padding: 40px 0;
        margin: 30px 0;
    }

    .unique-content h2,
    .lighting-demo h2,
    .editing-workflow h2,
    .commercial-types h2 {
        font-size: 1.8rem;
    }

    .composition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .composition-box {
        height: 250px;
    }

    .lighting-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 15px;
    }

    .workflow-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .page-header {
        min-height: 300px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-header h2,
    .section-title {
        font-size: 1.5rem;
    }

    .intro-section,
    .content-section,
    .courses-section,
    .features-section,
    .contact-section,
    .stats-section,
    .interactive-tabs-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .unique-feature-section {
        padding: 30px 0;
        margin: 20px 0;
    }

    .unique-content h2,
    .lighting-demo h2,
    .editing-workflow h2,
    .commercial-types h2 {
        font-size: 1.5rem;
    }

    .composition-box {
        height: 200px;
    }

    .lighting-options {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        flex: 0 0 auto;
        width: 100%;
    }

    .contact-page-wrapper {
        gap: 30px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-buttons {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .contact-detail-item {
        padding: 20px;
    }

    .success-content h1 {
        font-size: 1.8rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .contact-form-section h2 {
        font-size: 1.5rem;
    }
}

