/* Base & Typography */
:root {
    --primary-color: #0056b3; /* Deep Blue */
    --secondary-color: #20c997; /* Teal / Green */
    --accent-color: #007bff;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --transition: all 0.3s ease;
    --gold: #d4af37; /* Golden Color */
    --gold-light: #f1e5ac;
}

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

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

a:hover {
    color: var(--secondary-color);
}

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

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

.section {
    padding: 60px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #004494;
    color: var(--white);
}

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

.btn-secondary:hover {
    background-color: #1ba87e;
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color) !important;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 70px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}

.iso-cert {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    padding: 5px 15px;
    border-left: 1px solid rgba(0, 86, 179, 0.2);
    margin-left: 10px;
}

.iso-cert:hover {
    color: var(--secondary-color);
    border-left-color: var(--primary-color);
}

.iso-text {
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: var(--primary-color);
}

.iso-logo {
    height: 70px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.7), rgba(0, 86, 179, 0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 180px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--white));
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
    opacity: 0.9;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--primary-color);
}

.highlight-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: auto;
}

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

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-iso-link:hover {
    color: var(--white) !important;
    transform: translateX(5px);
}

.footer-iso-link {
    transition: var(--transition);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: var(--white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner button {
    margin-left: 15px;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
/* Ceremony Slider */
.ceremony-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.ceremony-header {
    margin-bottom: 40px;
    text-align: center;
}

.ceremony-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ceremony-header .subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.ceremony-info {
    margin-bottom: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 5px solid var(--primary-color);
}

.ceremony-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ceremony-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

@media (max-width: 768px) {
    .slide img {
        height: 300px;
    }
}

/* Manufacturing Process Infographic */
.process-infographic {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
    margin-top: 40px;
    overflow: hidden;
}

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

.process-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.process-header .subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.process-header .subtitle::before,
.process-header .subtitle::after {
    content: "•";
    color: var(--secondary-color);
    margin: 0 10px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    gap: 20px;
}

/* Timeline line */
.process-steps::before {
    content: "";
    position: absolute;
    top: 80px; /* Align with center of circles */
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--primary-color);
    z-index: 1;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-circle {
    width: 160px;
    height: 160px;
    background: var(--white);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: var(--transition);
}

.step-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
}

.step-circle .step-number {
    position: absolute;
    bottom: -10px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid var(--white);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step-circle:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.step-arrow {
    position: absolute;
    top: 80px;
    right: -25px;
    color: var(--primary-color);
    font-size: 2rem;
    transform: translateY(-50%);
    z-index: 3;
    background: var(--bg-light);
    padding: 0 10px;
}

.process-step:last-child .step-arrow {
    display: none;
}

.step-content {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid var(--secondary-color);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.process-step:hover .step-content {
    border-top-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.process-footer {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.process-footer-box {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 15px 40px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-footer-box p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.process-footer-box span {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-steps::before {
        left: 80px;
        top: 0;
        bottom: 0;
        width: 3px;
        height: auto;
    }
    
    .process-step {
        flex-direction: row;
        width: 100%;
        margin-bottom: 40px;
        text-align: left;
    }
    
    .step-circle {
        margin-bottom: 0;
        margin-right: 30px;
        flex-shrink: 0;
    }
    
    .step-arrow {
        top: auto;
        bottom: -35px;
        left: 80px;
        right: auto;
        transform: translateX(-50%) rotate(90deg);
    }
    
    .step-content {
        height: auto;
    }
}
